]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/indexrecords.cc
do not pollute namespace in the headers with using (Closes: #500198)
[apt.git] / apt-pkg / indexrecords.cc
index 448a76c27eea7dd1945bd28a490aeac9d586f1a8..7b48d659ec5e04364c010b800cbfe782480ca9ed 100644 (file)
@@ -15,6 +15,9 @@
 
 #include <apti18n.h>
                                                                        /*}}}*/
+
+using std::string;
+
 string indexRecords::GetDist() const
 {
    return this->Dist;
@@ -146,7 +149,7 @@ bool indexRecords::Load(const string Filename)                              /*{{{*/
    return true;
 }
                                                                        /*}}}*/
-vector<string> indexRecords::MetaKeys()                                        /*{{{*/
+std::vector<string> indexRecords::MetaKeys()                           /*{{{*/
 {
    std::vector<std::string> keys;
    std::map<string,checkSum *>::iterator I = Entries.begin();