diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-11 11:25:24 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-11-11 11:35:43 +0200 |
commit | 0521461eee932eefbd69fcd39407f181bc2213dd (patch) | |
tree | f7d4869e54eede50395972b45d7000abcf87f787 /compilerplugins | |
parent | 8978ce53e16de9a597015b0704f813dffa7da920 (diff) |
disable loplugin memoryvar for now
seems to be crashing with latest(trunk) clang sometimes
Change-Id: Ice92b35deb6cb4610dbd53f570d0b43e9d2a2834
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/clang/memoryvar.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/memoryvar.cxx b/compilerplugins/clang/memoryvar.cxx index 2e776901c415..9cacdeee3ef0 100644 --- a/compilerplugins/clang/memoryvar.cxx +++ b/compilerplugins/clang/memoryvar.cxx @@ -232,7 +232,7 @@ bool MemoryVar::VisitReturnStmt(const ReturnStmt *returnStmt) return true; } -loplugin::Plugin::Registration< MemoryVar > X("memoryvar"); +loplugin::Plugin::Registration< MemoryVar > X("memoryvar", false); } |