summaryrefslogtreecommitdiffstats
path: root/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h
diff options
context:
space:
mode:
authorAlexander Kornienko <alexfh@google.com>2015-04-11 02:00:23 +0000
committerAlexander Kornienko <alexfh@google.com>2015-04-11 02:00:23 +0000
commit34eb20725d9d923f6f2ff9f205f198d5f3df022b (patch)
tree4edc0a751e1e64c8fd953053d1a230ac09e16eae /clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h
parentaf7d76c7204c0a586fd38fff45ffe0bd284593b0 (diff)
downloadbcm5719-llvm-34eb20725d9d923f6f2ff9f205f198d5f3df022b.tar.gz
bcm5719-llvm-34eb20725d9d923f6f2ff9f205f198d5f3df022b.zip
Use 'override/final' instead of 'virtual' for overridden methods
Summary: The patch is generated using clang-tidy misc-use-override check. This command was used: tools/clang/tools/extra/clang-tidy/tool/run-clang-tidy.py \ -checks='-*,misc-use-override' -header-filter='llvm|clang' -j=32 -fix Reviewers: dblaikie Reviewed By: dblaikie Subscribers: klimek, cfe-commits Differential Revision: http://reviews.llvm.org/D8926 llvm-svn: 234678
Diffstat (limited to 'clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h')
-rw-r--r--clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h b/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h
index a72d1d4f921..135cd4ef864 100644
--- a/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h
+++ b/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h
@@ -27,7 +27,7 @@ class SimpleConstraintManager : public ConstraintManager {
public:
SimpleConstraintManager(SubEngine *subengine, SValBuilder &SB)
: SU(subengine), SVB(SB) {}
- virtual ~SimpleConstraintManager();
+ ~SimpleConstraintManager() override;
//===------------------------------------------------------------------===//
// Common implementation for the interface provided by ConstraintManager.
OpenPOWER on IntegriCloud