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 /test | |
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 'test')
-rw-r--r-- | test/unit/testRESearch.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/unit/testRESearch.cxx b/test/unit/testRESearch.cxx index 0dadc21c4..5571960d4 100644 --- a/test/unit/testRESearch.cxx +++ b/test/unit/testRESearch.cxx @@ -7,6 +7,7 @@ #include <stdexcept> #include <string_view> #include <vector> +#include <array> #include <optional> #include <algorithm> #include <memory> |