diff options
| author | Neil <nyamatongwe@gmail.com> | 2018-05-14 13:13:21 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2018-05-14 13:13:21 +1000 |
| commit | 793a375153519ae45ca8b3c9645fee347160d1a4 (patch) | |
| tree | 048747498474ae954488c7dbc16c3f90bf4aa2b0 /win32 | |
| parent | 45b004538871dcac7aa6f4a1f62a0fc3e7231693 (diff) | |
| download | scintilla-mirror-793a375153519ae45ca8b3c9645fee347160d1a4.tar.gz | |
Include <string_view> to allow future use in Platform interface and Unicode.
Diffstat (limited to 'win32')
| -rw-r--r-- | win32/HanjaDic.cxx | 1 | ||||
| -rw-r--r-- | win32/PlatWin.cxx | 1 | ||||
| -rw-r--r-- | win32/ScintillaWin.cxx | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/win32/HanjaDic.cxx b/win32/HanjaDic.cxx index ccc303a99..b55b91d8c 100644 --- a/win32/HanjaDic.cxx +++ b/win32/HanjaDic.cxx @@ -7,6 +7,7 @@ // The License.txt file describes the conditions under which this software may be distributed. #include <string> +#include <string_view> #include <windows.h> diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index 57ef26e6c..ccfb65e32 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -16,6 +16,7 @@ #include <climits> #include <vector> +#include <string_view> #include <map> #include <algorithm> #include <memory> diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index 4335c1164..bcb078e86 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -17,6 +17,7 @@ #include <stdexcept> #include <new> #include <string> +#include <string_view> #include <vector> #include <map> #include <algorithm> |
