summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/literalalternative.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'compilerplugins/clang/literalalternative.cxx')
-rw-r--r--compilerplugins/clang/literalalternative.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/literalalternative.cxx b/compilerplugins/clang/literalalternative.cxx
index f8564047ad01..4d2711c3d64c 100644
--- a/compilerplugins/clang/literalalternative.cxx
+++ b/compilerplugins/clang/literalalternative.cxx
@@ -23,7 +23,7 @@ class LiteralAlternative:
public:
explicit LiteralAlternative(CompilerInstance & compiler): Plugin(compiler) {}
- virtual void run() { TraverseDecl(compiler.getASTContext().getTranslationUnitDecl()); }
+ virtual void run() override { TraverseDecl(compiler.getASTContext().getTranslationUnitDecl()); }
bool VisitCallExpr(const CallExpr * expr);
};