diff options
author | Neil <nyamatongwe@gmail.com> | 2024-03-08 09:09:54 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2024-03-08 09:09:54 +1100 |
commit | 61b369cbfef41fece0d01b7ff600afaa891d76ec (patch) | |
tree | bcb1cebacfe26460210553bf63fb25aa63f400d2 /src/UndoHistory.cxx | |
parent | 40e4b19c0004d7572c3868a0284fb44a09e4fd36 (diff) | |
download | scintilla-mirror-61b369cbfef41fece0d01b7ff600afaa891d76ec.tar.gz |
Reformat with astyle.
Diffstat (limited to 'src/UndoHistory.cxx')
-rw-r--r-- | src/UndoHistory.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/UndoHistory.cxx b/src/UndoHistory.cxx index c94d0690c..48695e664 100644 --- a/src/UndoHistory.cxx +++ b/src/UndoHistory.cxx @@ -102,7 +102,7 @@ void ScaledVector::SetValueAt(size_t index, size_t value) { } void ScaledVector::ClearValueAt(size_t index) noexcept { - // 0 fits in any size element so no expansion needed so no exceptions + // 0 fits in any size element so no expansion needed so no exceptions WriteValue(bytes.data() + index * element.size, element.size, 0); } |