mark functions with CM_OVERRIDE

This commit is contained in:
Daniel Pfeifer
2016-06-27 21:25:27 +02:00
parent 9e2d6f0c4d
commit a7a9239096
216 changed files with 1124 additions and 1033 deletions
+2 -2
View File
@@ -62,7 +62,7 @@ public:
char Separator;
char LineEnd;
bool IgnoreCR;
virtual bool ProcessChunk(const char* data, int length);
bool ProcessChunk(const char* data, int length) CM_OVERRIDE;
/** Implement in a subclass to process one line of input. It
should return true only if it is interested in more data. */
@@ -79,7 +79,7 @@ public:
}
private:
virtual bool ProcessLine() { return true; }
bool ProcessLine() CM_OVERRIDE { return true; }
};
/** Run a process and send output to given parsers. */