summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/simplifydynamiccast.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'compilerplugins/clang/simplifydynamiccast.cxx')
-rw-r--r--compilerplugins/clang/simplifydynamiccast.cxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/compilerplugins/clang/simplifydynamiccast.cxx b/compilerplugins/clang/simplifydynamiccast.cxx
index b1f06179ee71..bb6e81d6ca58 100644
--- a/compilerplugins/clang/simplifydynamiccast.cxx
+++ b/compilerplugins/clang/simplifydynamiccast.cxx
@@ -6,6 +6,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
+#ifndef LO_CLANG_SHARED_PLUGINS
#include <cassert>
#include <string>
@@ -111,7 +112,10 @@ bool SimplifyDynamicCast::VisitCXXStaticCastExpr(CXXStaticCastExpr const* static
return true;
}
-loplugin::Plugin::Registration<SimplifyDynamicCast> X("simplifydynamiccast", true);
-}
+loplugin::Plugin::Registration<SimplifyDynamicCast> simplifydynamiccast("simplifydynamiccast");
+
+} // namespace
+
+#endif // LO_CLANG_SHARED_PLUGINS
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */