aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2023-11-19 08:42:44 +1100
committerNeil <nyamatongwe@gmail.com>2023-11-19 08:42:44 +1100
commitd533d08a0a30a7527dd8fa0c4df5c10d8bfd80e7 (patch)
tree0be9de8090ff71e41493126c4bddd80051f8b7e2
parentc744dd9d5b0ff201f6609b1978a1ad0103430852 (diff)
downloadscintilla-mirror-d533d08a0a30a7527dd8fa0c4df5c10d8bfd80e7.tar.gz
Remove extra ';' which produced warning on old GCC.
-rw-r--r--src/ChangeHistory.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ChangeHistory.cxx b/src/ChangeHistory.cxx
index 394b37e23..d6c93ae39 100644
--- a/src/ChangeHistory.cxx
+++ b/src/ChangeHistory.cxx
@@ -46,7 +46,7 @@ constexpr bool InsertionSpanSameDeletion(const ChangeSpan &is, Sci::Position pos
is.start == positionDeletion &&
is.length == 0 &&
is.edition == edition;
-};
+}
}