diff options
author | Neil <nyamatongwe@gmail.com> | 2022-09-15 08:27:05 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2022-09-15 08:27:05 +1000 |
commit | 961485da6a188f9f70b4bfe92d298c7b645e06fb (patch) | |
tree | 9061833956fea6f518e47d46b978e74fa0551542 /src | |
parent | 915adb1eb4ddcbdc7974ee306f83ee8e88698e6d (diff) | |
download | scintilla-mirror-961485da6a188f9f70b4bfe92d298c7b645e06fb.tar.gz |
Remove unnecessary ';'.
Diffstat (limited to 'src')
-rw-r--r-- | src/ChangeHistory.cxx | 2 |
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(); |