diff options
author | Neil <nyamatongwe@gmail.com> | 2018-05-31 09:23:20 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2018-05-31 09:23:20 +1000 |
commit | d77d42af4f0d64e85f2860804652d4a976f23e54 (patch) | |
tree | eb8aadff2170ace2074af5e298c298f9ab60cc29 /src | |
parent | 3677788973daca0bcfe164b5b74a67877d6b83e1 (diff) | |
download | scintilla-mirror-d77d42af4f0d64e85f2860804652d4a976f23e54.tar.gz |
Allow std::unique_ptr to be used more widely.
Diffstat (limited to 'src')
-rw-r--r-- | src/KeyMap.cxx | 1 | ||||
-rw-r--r-- | src/Selection.cxx | 1 | ||||
-rw-r--r-- | src/Style.cxx | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/src/KeyMap.cxx b/src/KeyMap.cxx index 37b0762d2..55f690f07 100644 --- a/src/KeyMap.cxx +++ b/src/KeyMap.cxx @@ -11,6 +11,7 @@ #include <string_view> #include <vector> #include <map> +#include <memory> #include "Platform.h" diff --git a/src/Selection.cxx b/src/Selection.cxx index 5396746a3..dbb3afc5c 100644 --- a/src/Selection.cxx +++ b/src/Selection.cxx @@ -12,6 +12,7 @@ #include <string_view> #include <vector> #include <algorithm> +#include <memory> #include "Platform.h" diff --git a/src/Style.cxx b/src/Style.cxx index 3f2447ddd..03f37449a 100644 --- a/src/Style.cxx +++ b/src/Style.cxx @@ -8,6 +8,7 @@ #include <stdexcept> #include <string_view> #include <vector> +#include <memory> #include "Platform.h" |