summaryrefslogtreecommitdiff
path: root/apt-pkg/indexfile.cc
diff options
context:
space:
mode:
authorJulian Andres Klode <julian.klode@canonical.com>2020-02-26 13:59:12 +0100
committerJulian Andres Klode <julian.klode@canonical.com>2020-02-26 14:10:47 +0100
commite886ff0a6e66362e1a8f8c53977bf062cec0da12 (patch)
tree1255c1e0c9e52713ba22068208b72c973bb7f649 /apt-pkg/indexfile.cc
parentb2eec2572ce1c8e79ac3a270161cc5d415169840 (diff)
Remove ABI workaround for debDebPkgFileIndex::ArchiveInfo
Diffstat (limited to 'apt-pkg/indexfile.cc')
-rw-r--r--apt-pkg/indexfile.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/apt-pkg/indexfile.cc b/apt-pkg/indexfile.cc
index a7290c653..ef3486ab8 100644
--- a/apt-pkg/indexfile.cc
+++ b/apt-pkg/indexfile.cc
@@ -65,11 +65,8 @@ pkgIndexFile::pkgIndexFile(bool const Trusted) : /*{{{*/
}
/*}}}*/
// IndexFile::ArchiveInfo - Stub /*{{{*/
-std::string pkgIndexFile::ArchiveInfo(pkgCache::VerIterator const &Ver) const
+std::string pkgIndexFile::ArchiveInfo(pkgCache::VerIterator const &) const
{
- debDebPkgFileIndex const * const debfile = dynamic_cast<debDebPkgFileIndex const*>(this);
- if (debfile != nullptr)
- return debfile->ArchiveInfo_impl(Ver);
return std::string();
}
/*}}}*/