]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/tagfile.h
guard const-ification API changes
[apt.git] / apt-pkg / tagfile.h
index 4cd99b2fc045fde13ea0b486946a4305d8d48cf7..99e2a8d938a07cb18e7e5a6193d73631f7e7a214 100644 (file)
@@ -97,7 +97,11 @@ class pkgTagSection
     * times, but only the last occurrence is available via Find methods.
     */
    unsigned int Count() const;
+#if APT_PKG_ABI >= 413
    bool Exists(const char* const Tag) const;
+#else
+   bool Exists(const char* const Tag);
+#endif
 
    inline void Get(const char *&Start,const char *&Stop,unsigned int I) const
                    {Start = Section + Tags[I].StartTag; Stop = Section + Tags[I+1].StartTag;}