diff options
| author | наб <nabijaczleweli@nabijaczleweli.xyz> | 2024-11-12 18:22:44 +0100 |
|---|---|---|
| committer | Julian Andres Klode <julian.klode@canonical.com> | 2025-02-14 19:45:12 +0100 |
| commit | 4f6d379124bc51a09608fa3f45d66713f927b959 (patch) | |
| tree | b20d5437d722deb919d92f06498402d23e53eef6 /apt-pkg/deb/deblistparser.cc | |
| parent | 793c9b1f3059c35b66c19f62fa39b6607809fea0 (diff) | |
Drop APT::StringView
Diffstat (limited to 'apt-pkg/deb/deblistparser.cc')
| -rw-r--r-- | apt-pkg/deb/deblistparser.cc | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/apt-pkg/deb/deblistparser.cc b/apt-pkg/deb/deblistparser.cc index 375b5dbd6..e3041f848 100644 --- a/apt-pkg/deb/deblistparser.cc +++ b/apt-pkg/deb/deblistparser.cc @@ -563,25 +563,6 @@ const char *debListParser::ParseDepends(const char *Start,const char *Stop, return res; } -#if APT_PKG_ABI <= 600 -const char *debListParser::ParseDepends(const char *Start,const char *Stop, - APT::StringView &Package,APT::StringView &Ver, - unsigned int &Op, bool ParseArchFlags, - bool const StripMultiArch, - bool const ParseRestrictionsList, - string Arch) -{ - string_view PackageView; - string_view VerView; - - auto res = ParseDepends(Start, Stop, PackageView, VerView, Op, (bool)ParseArchFlags, - (bool) StripMultiArch, (bool) ParseRestrictionsList, Arch); - Package = PackageView; - Ver = VerView; - - return res; -} -#endif const char *debListParser::ParseDepends(const char *Start, const char *Stop, string_view &Package, string_view &Ver, |
