diff options
author | Gabor Horvath <xazax.hun@gmail.com> | 2018-02-10 14:26:53 +0000 |
---|---|---|
committer | Gabor Horvath <xazax.hun@gmail.com> | 2018-02-10 14:26:53 +0000 |
commit | 6e0dbb06687820d53efdcc21061f1445de5c9a50 (patch) | |
tree | 621ec944f4f3bb964294319174ac1032142d4e96 /clang/lib | |
parent | 207e7b1fa179c359182c25f76dfc18bb757166e5 (diff) | |
download | bcm5719-llvm-6e0dbb06687820d53efdcc21061f1445de5c9a50.tar.gz bcm5719-llvm-6e0dbb06687820d53efdcc21061f1445de5c9a50.zip |
Make a build bot happy.
llvm-svn: 324809
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/Frontend/FrontendActions.cpp | 12 | ||||
-rw-r--r-- | clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/clang/lib/Frontend/FrontendActions.cpp b/clang/lib/Frontend/FrontendActions.cpp index 4a7e6f33974..1eff566f0f4 100644 --- a/clang/lib/Frontend/FrontendActions.cpp +++ b/clang/lib/Frontend/FrontendActions.cpp @@ -309,17 +309,17 @@ class DefaultTemplateInstCallback : public TemplateInstantiationCallback { using CodeSynthesisContext = Sema::CodeSynthesisContext; public: - virtual void initialize(const Sema &) {} + void initialize(const Sema &) override {} - virtual void finalize(const Sema &) {} + void finalize(const Sema &) override {} - virtual void atTemplateBegin(const Sema &TheSema, - const CodeSynthesisContext &Inst) override { + void atTemplateBegin(const Sema &TheSema, + const CodeSynthesisContext &Inst) override { displayTemplightEntry<true>(llvm::outs(), TheSema, Inst); } - virtual void atTemplateEnd(const Sema &TheSema, - const CodeSynthesisContext &Inst) override { + void atTemplateEnd(const Sema &TheSema, + const CodeSynthesisContext &Inst) override { displayTemplightEntry<false>(llvm::outs(), TheSema, Inst); } diff --git a/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp b/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp index 59f30d5c306..1bb939a6fad 100644 --- a/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp +++ b/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp @@ -258,4 +258,4 @@ bool ExecuteCompilerInvocation(CompilerInstance *Clang) { return Success; } -} //namespace clang +} // namespace clang |