]> git.saurik.com Git - apt.git/blobdiff - test/libapt/indexcopytosourcelist_test.cc
add c++11 override marker to overridden methods
[apt.git] / test / libapt / indexcopytosourcelist_test.cc
index bec87601fee8e5a96de9239407ee99354d626449..2d07dba153d53c8bb2a47e7214eb26d7b22d7985 100644 (file)
@@ -15,10 +15,10 @@ class NoCopy : public IndexCopy {
         IndexCopy::ConvertToSourceList(CD, Path);
         return Path;
       }
         IndexCopy::ConvertToSourceList(CD, Path);
         return Path;
       }
-      bool GetFile(std::string &/*Filename*/, unsigned long long &/*Size*/) { return false; }
-      bool RewriteEntry(FILE * /*Target*/, std::string /*File*/) { return false; }
-      const char *GetFileName() { return NULL; }
-      const char *Type() { return NULL; }
+      bool GetFile(std::string &/*Filename*/, unsigned long long &/*Size*/) APT_OVERRIDE { return false; }
+      bool RewriteEntry(FileFd & /*Target*/, std::string const &/*File*/) APT_OVERRIDE { return false; }
+      const char *GetFileName() APT_OVERRIDE { return NULL; }
+      const char *Type() APT_OVERRIDE { return NULL; }
 
 };
 
 
 };