diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-07-01 13:24:37 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-07-01 19:50:18 +0200 |
commit | 740d87c0cc833a8159d79100f789033750a8427c (patch) | |
tree | bf807ab21b2ac716238acc669ccaef79906225c6 /include | |
parent | 38cfe86259c63b0080d3f064dd0e7999d2eeee76 (diff) |
Upcoming improved loplugin:staticanonymous -> redundantstatic: oox
Change-Id: I1c6a2852e4794529ec7d55ceae485196a8170e24
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97617
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/oox/dump/dumperbase.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/oox/dump/dumperbase.hxx b/include/oox/dump/dumperbase.hxx index 6b9144646069..21e88b2fc2c7 100644 --- a/include/oox/dump/dumperbase.hxx +++ b/include/oox/dump/dumperbase.hxx @@ -384,7 +384,7 @@ public: OUString operator()( const char* pcDefault ) const { if( has() ) return *this; return String( pcDefault ); } }; -static const String EMPTY_STRING; +const String EMPTY_STRING; /** Base class for all dumper classes. @@ -733,7 +733,7 @@ private: mutable NameListRef mxList; }; -static const NameListWrapper NO_LIST; +const NameListWrapper NO_LIST; class ItemFormatMap |