summaryrefslogtreecommitdiff
path: root/sw/source/core/bastyp
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2020-07-02 08:20:48 +0200
committerStephan Bergmann <sbergman@redhat.com>2020-07-02 09:30:19 +0200
commit2b0677d69e6e53a7e3a74c6e42a8d02f7cc36a41 (patch)
tree56d3cb8394f726025842adf25e902255b435bf85 /sw/source/core/bastyp
parent13c4a795aa42250a31977068a3fbb2dc5162e443 (diff)
Upcoming improved loplugin:staticanonymous -> redundantstatic: sw
Change-Id: Id4e6e18b1fce848972e67ca519cbf23eab7cd109 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97701 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sw/source/core/bastyp')
-rw-r--r--sw/source/core/bastyp/bparr.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/bastyp/bparr.cxx b/sw/source/core/bastyp/bparr.cxx
index 8158a485a56b..1e8ecaa83a3b 100644
--- a/sw/source/core/bastyp/bparr.cxx
+++ b/sw/source/core/bastyp/bparr.cxx
@@ -24,7 +24,7 @@
/** Resize block management by this constant.
As a result there are approx. 20 * MAXENTRY == 20000 entries available */
-static const sal_uInt16 nBlockGrowSize = 20;
+const sal_uInt16 nBlockGrowSize = 20;
#if OSL_DEBUG_LEVEL > 2
#define CHECKIDX( p, n, i, c ) CheckIdx( p, n, i, c );