[C++11] Add 'override' keyword to virtual methods that override their base class.
llvm-svn: 203758
This commit is contained in:
@@ -46,17 +46,13 @@ public:
|
||||
StringRef SysRoot)
|
||||
: PP(_PP), OutputFile(OutputFile.str()), SysRoot(SysRoot.str()) { }
|
||||
|
||||
virtual void InclusionDirective(SourceLocation HashLoc,
|
||||
const Token &IncludeTok,
|
||||
StringRef FileName,
|
||||
bool IsAngled,
|
||||
CharSourceRange FilenameRange,
|
||||
const FileEntry *File,
|
||||
StringRef SearchPath,
|
||||
StringRef RelativePath,
|
||||
const Module *Imported);
|
||||
void InclusionDirective(SourceLocation HashLoc, const Token &IncludeTok,
|
||||
StringRef FileName, bool IsAngled,
|
||||
CharSourceRange FilenameRange, const FileEntry *File,
|
||||
StringRef SearchPath, StringRef RelativePath,
|
||||
const Module *Imported) override;
|
||||
|
||||
virtual void EndOfMainFile() {
|
||||
void EndOfMainFile() override {
|
||||
OutputGraphFile();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user