aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2022-09-15 08:27:05 +1000
committerNeil <nyamatongwe@gmail.com>2022-09-15 08:27:05 +1000
commit961485da6a188f9f70b4bfe92d298c7b645e06fb (patch)
tree9061833956fea6f518e47d46b978e74fa0551542 /src
parent915adb1eb4ddcbdc7974ee306f83ee8e88698e6d (diff)
downloadscintilla-mirror-961485da6a188f9f70b4bfe92d298c7b645e06fb.tar.gz
Remove unnecessary ';'.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeHistory.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ChangeHistory.cxx b/src/ChangeHistory.cxx
index 4c771a93c..09eb51b73 100644
--- a/src/ChangeHistory.cxx
+++ b/src/ChangeHistory.cxx
@@ -45,7 +45,7 @@ void ChangeStack::PushDeletion(Sci::Position positionDeletion, int edition) {
void ChangeStack::PushInsertion(Sci::Position positionInsertion, Sci::Position length, int edition) {
steps.back()++;
insertions.push_back({ positionInsertion, length, edition, InsertionSpan::Direction::insertion });
-};
+}
size_t ChangeStack::PopStep() noexcept {
const size_t spans = steps.back();