diff options
author | Zufu Liu <unknown> | 2021-06-21 13:35:09 +1000 |
---|---|---|
committer | Zufu Liu <unknown> | 2021-06-21 13:35:09 +1000 |
commit | 6de6577e1c9f8fad2852abb3b850f563fb7a04c6 (patch) | |
tree | 1d1a35fb028ad5a304afd9447311c60b3ba3f920 /test/unit/testPartitioning.cxx | |
parent | 5b3faa208ea29e45c6d845760bb902c3a9f057da (diff) | |
download | scintilla-mirror-rel-5-1-0.tar.gz |
Fix some warnings in unit tests.rel-5-1-0
Diffstat (limited to 'test/unit/testPartitioning.cxx')
-rw-r--r-- | test/unit/testPartitioning.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/testPartitioning.cxx b/test/unit/testPartitioning.cxx index e28ef318e..b2b7598d8 100644 --- a/test/unit/testPartitioning.cxx +++ b/test/unit/testPartitioning.cxx @@ -22,9 +22,9 @@ using namespace Scintilla::Internal; -const int growSize = 4; +constexpr int growSize = 4; -const int lengthTestArray = 8; +constexpr int lengthTestArray = 8; static const int testArray[lengthTestArray] = {3, 4, 5, 6, 7, 8, 9, 10}; // Test SplitVectorWithRangeAdd. |