diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-03-13 10:01:24 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-03-13 19:21:01 +0100 |
commit | df3e1b7bbd126ed114015070bf68db30fbe9516e (patch) | |
tree | 50b26b1a65210ed635c51d446db177f75feb9b7b /svl/qa | |
parent | d077cd6189da55cab0bdea3a265446f362160ae0 (diff) |
Revert "loplugin:constfields in svl"
This reverts commit 5181253946ca1877cc42050452aa6d733d6da3f1.
Change-Id: I30e30aae45c33824c0df823a9fad710faa81ea3c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90453
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svl/qa')
-rw-r--r-- | svl/qa/unit/svl.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svl/qa/unit/svl.cxx b/svl/qa/unit/svl.cxx index 707754ac920f..fc541861f182 100644 --- a/svl/qa/unit/svl.cxx +++ b/svl/qa/unit/svl.cxx @@ -244,9 +244,9 @@ void Test::testNumberFormat() }; struct { - NfIndexTableOffset const eStart; - NfIndexTableOffset const eEnd; - size_t const nSize; + NfIndexTableOffset eStart; + NfIndexTableOffset eEnd; + size_t nSize; const char** pCodes; } aTests[] = { { NF_NUMBER_START, NF_NUMBER_END, 6, pNumber }, @@ -1114,7 +1114,7 @@ void Test::testIsNumberFormat() static struct NumberFormatData { const char* pFormat; - bool const bIsNumber; + bool bIsNumber; } const aTests[] = { { "20.3", true }, { "2", true }, |