diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-05-08 16:57:23 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-05-08 16:57:49 +0200 |
commit | aa50b1c03f18a10c281786c69e24d8255613ac5a (patch) | |
tree | d5b740900f343e2fc88253a193de82201ce187ca /compilerplugins | |
parent | 516d3007444fe2dd07b2cde24066637281c2a217 (diff) |
Enable loplugin:staticmethods
Change-Id: Ic0062eddebf9225d298569bb4900047a0ee0b112
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/clang/staticmethods.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/staticmethods.cxx b/compilerplugins/clang/staticmethods.cxx index a0d60997a274..decb3ffd0f8f 100644 --- a/compilerplugins/clang/staticmethods.cxx +++ b/compilerplugins/clang/staticmethods.cxx @@ -206,7 +206,7 @@ bool StaticMethods::TraverseCXXMethodDecl(const CXXMethodDecl * pCXXMethodDecl) return true; } -loplugin::Plugin::Registration<StaticMethods> X("staticmethods", false); +loplugin::Plugin::Registration<StaticMethods> X("staticmethods"); } |