diff options
author | David Kalnischkies <david@kalnischkies.de> | 2014-11-07 17:49:36 +0100 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2014-11-08 14:29:25 +0100 |
commit | 02e20767719873fa8f1919bd0e7a75f63e00c484 (patch) | |
tree | 248d78b521d6e13ab7bb00a74047486ee72d2635 /apt-pkg/tagfile.cc | |
parent | 765190e493645e13b5651625d87fd9c8db910a85 (diff) |
guard const-ification API changes
Git-Dch: Ignore
Diffstat (limited to 'apt-pkg/tagfile.cc')
-rw-r--r-- | apt-pkg/tagfile.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apt-pkg/tagfile.cc b/apt-pkg/tagfile.cc index b263baf66..e667c495f 100644 --- a/apt-pkg/tagfile.cc +++ b/apt-pkg/tagfile.cc @@ -408,7 +408,11 @@ void pkgTagSection::Trim() } /*}}}*/ // TagSection::Exists - return True if a tag exists /*{{{*/ +#if APT_PKG_ABI >= 413 bool pkgTagSection::Exists(const char* const Tag) const +#else +bool pkgTagSection::Exists(const char* const Tag) +#endif { unsigned int tmp; return Find(Tag, tmp); |