diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-07-15 18:18:57 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-07-15 18:18:57 +0200 |
commit | 574db10513be6b25f24c8cab49cbc9e63aca87d3 (patch) | |
tree | f56f03a03a935daf09adf5c7a8540b12d37e6a29 /compilerplugins/clang/sfxpoolitem.cxx | |
parent | 48480d4f19d2fb92ca4ae0527eec4753cdc439c0 (diff) |
Revert "convert some plugins to use the sharedplugin infrastructure"
This reverts commit fc1b213d157afa57704cec5a0fb65ae8c11d7822.
I didn't convert these correctly, the Traverse calls need
adjusting.
Diffstat (limited to 'compilerplugins/clang/sfxpoolitem.cxx')
-rw-r--r-- | compilerplugins/clang/sfxpoolitem.cxx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/compilerplugins/clang/sfxpoolitem.cxx b/compilerplugins/clang/sfxpoolitem.cxx index ce52336c8e04..bd2870fe06d3 100644 --- a/compilerplugins/clang/sfxpoolitem.cxx +++ b/compilerplugins/clang/sfxpoolitem.cxx @@ -6,7 +6,6 @@ * 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 <string> #include <iostream> @@ -125,10 +124,8 @@ bool SfxPoolItem::VisitCXXRecordDecl(const CXXRecordDecl* decl) } -loplugin::Plugin::Registration< SfxPoolItem > sfxpoolitem("sfxpoolitem"); +loplugin::Plugin::Registration< SfxPoolItem > X("sfxpoolitem"); -} // namespace - -#endif // LO_CLANG_SHARED_PLUGINS +} /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |