]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/indexrecords.h
use HashStringList in the acquire system
[apt.git] / apt-pkg / indexrecords.h
index 2260a4ae1edb2202480cb46a58362bbf4adff007..14b03c4d5b2fa5814e6f36f39f4966ec8ec05094 100644 (file)
@@ -55,11 +55,21 @@ class indexRecords
    virtual ~indexRecords(){};
 };
 
+#if __GNUC__ >= 4
+       // ensure that con- & de-structor don't trigger this warning
+       #pragma GCC diagnostic push
+       #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
+#endif
 struct indexRecords::checkSum
 {
    std::string MetaKeyFilename;
-   HashString Hash;
+   HashStringList Hashes;
    unsigned long long Size;
+
+   APT_DEPRECATED HashString Hash;
 };
+#if __GNUC__ >= 4
+       #pragma GCC diagnostic pop
+#endif
 
 #endif