diff options
author | Neil <nyamatongwe@gmail.com> | 2023-10-15 08:40:37 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2023-10-15 08:40:37 +1100 |
commit | 0a00f1b52c9f05800192db71ccc28dfaed58729b (patch) | |
tree | 1ef515f84fa935f8c3c14c98824522b0aba32112 /src/Document.cxx | |
parent | 810883d3e039c92ce33372cc2e762615325b37f9 (diff) | |
download | scintilla-mirror-0a00f1b52c9f05800192db71ccc28dfaed58729b.tar.gz |
Use std::array for regex match positions as it will simplify copying.
This change set does not change behaviour.
Diffstat (limited to 'src/Document.cxx')
-rw-r--r-- | src/Document.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Document.cxx b/src/Document.cxx index 94d126a70..0365b24db 100644 --- a/src/Document.cxx +++ b/src/Document.cxx @@ -16,6 +16,7 @@ #include <string> #include <string_view> #include <vector> +#include <array> #include <forward_list> #include <optional> #include <algorithm> |