diff options
author | Neil <nyamatongwe@gmail.com> | 2023-11-19 08:42:44 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2023-11-19 08:42:44 +1100 |
commit | d533d08a0a30a7527dd8fa0c4df5c10d8bfd80e7 (patch) | |
tree | 0be9de8090ff71e41493126c4bddd80051f8b7e2 /src/ChangeHistory.cxx | |
parent | c744dd9d5b0ff201f6609b1978a1ad0103430852 (diff) | |
download | scintilla-mirror-d533d08a0a30a7527dd8fa0c4df5c10d8bfd80e7.tar.gz |
Remove extra ';' which produced warning on old GCC.
Diffstat (limited to 'src/ChangeHistory.cxx')
-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 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; -}; +} } |