summaryrefslogtreecommitdiffstats
path: root/clang/lib
diff options
context:
space:
mode:
authorGabor Horvath <xazax.hun@gmail.com>2018-02-10 14:26:53 +0000
committerGabor Horvath <xazax.hun@gmail.com>2018-02-10 14:26:53 +0000
commit6e0dbb06687820d53efdcc21061f1445de5c9a50 (patch)
tree621ec944f4f3bb964294319174ac1032142d4e96 /clang/lib
parent207e7b1fa179c359182c25f76dfc18bb757166e5 (diff)
downloadbcm5719-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.cpp12
-rw-r--r--clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp2
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
OpenPOWER on IntegriCloud