diff options
author | Neil <nyamatongwe@gmail.com> | 2019-12-02 09:06:59 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2019-12-02 09:06:59 +1100 |
commit | f8875aa1cf738fe2e2cdfc29ffc346b51ea1ec1c (patch) | |
tree | 160d9d1fe131e0a39b779bedec552f4d3f2f7702 /src/SplitVector.h | |
parent | ba3b2d185d77289a760bfd513611dec4f1b5e564 (diff) | |
download | scintilla-mirror-f8875aa1cf738fe2e2cdfc29ffc346b51ea1ec1c.tar.gz |
Use noexcept and const where reasonable.
Diffstat (limited to 'src/SplitVector.h')
-rw-r--r-- | src/SplitVector.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/SplitVector.h b/src/SplitVector.h index 39895a700..a8f1ed1d9 100644 --- a/src/SplitVector.h +++ b/src/SplitVector.h @@ -76,11 +76,11 @@ public: ~SplitVector() { } - ptrdiff_t GetGrowSize() const { + ptrdiff_t GetGrowSize() const noexcept { return growSize; } - void SetGrowSize(ptrdiff_t growSize_) { + void SetGrowSize(ptrdiff_t growSize_) noexcept { growSize = growSize_; } @@ -290,7 +290,7 @@ public: std::copy(body.data() + position, body.data() + position + range1Length, buffer); buffer += range1Length; position = position + range1Length + gapLength; - ptrdiff_t range2Length = retrieveLength - range1Length; + const ptrdiff_t range2Length = retrieveLength - range1Length; std::copy(body.data() + position, body.data() + position + range2Length, buffer); } |