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 | c31087a0aab296176f8a8c16369855edc79b8e06 (patch) | |
| tree | 827b9f2a0e98159415d5a3090e9a17c86b0be684 | |
| parent | f2ef0f3e866479c1c88eb899c8291a6d93f72928 (diff) | |
| download | scintilla-mirror-c31087a0aab296176f8a8c16369855edc79b8e06.tar.gz | |
Backport: Allow std::unique_ptr to be used more widely.
Backport of changeset 7008:1f95757fa242.
| -rw-r--r-- | src/KeyMap.cxx | 1 | ||||
| -rw-r--r-- | src/Selection.cxx | 1 | ||||
| -rw-r--r-- | src/Style.cxx | 1 | ||||
| -rw-r--r-- | test/unit/UnitTester.cxx | 1 | ||||
| -rw-r--r-- | test/unit/testUniConversion.cxx | 1 | ||||
| -rw-r--r-- | test/unit/unitTest.cxx | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/src/KeyMap.cxx b/src/KeyMap.cxx index ee76ff052..7587ef03f 100644 --- a/src/KeyMap.cxx +++ b/src/KeyMap.cxx @@ -10,6 +10,7 @@ #include <stdexcept> #include <vector> #include <map> +#include <memory> #include "Platform.h" diff --git a/src/Selection.cxx b/src/Selection.cxx index 92a34f7da..c8c567fcb 100644 --- a/src/Selection.cxx +++ b/src/Selection.cxx @@ -11,6 +11,7 @@ #include <stdexcept> #include <vector> #include <algorithm> +#include <memory> #include "Platform.h" diff --git a/src/Style.cxx b/src/Style.cxx index af09ac10f..54f489c48 100644 --- a/src/Style.cxx +++ b/src/Style.cxx @@ -7,6 +7,7 @@ #include <stdexcept> #include <vector> +#include <memory> #include "Platform.h" diff --git a/test/unit/UnitTester.cxx b/test/unit/UnitTester.cxx index 0383deeeb..c5077f334 100644 --- a/test/unit/UnitTester.cxx +++ b/test/unit/UnitTester.cxx @@ -9,6 +9,7 @@ #include <cstdarg> #include <vector> +#include <memory> #include "Platform.h" diff --git a/test/unit/testUniConversion.cxx b/test/unit/testUniConversion.cxx index 243786531..99d751d9f 100644 --- a/test/unit/testUniConversion.cxx +++ b/test/unit/testUniConversion.cxx @@ -5,6 +5,7 @@ #include <string> #include <vector> #include <algorithm> +#include <memory> #include "Platform.h" diff --git a/test/unit/unitTest.cxx b/test/unit/unitTest.cxx index 4a1537369..cd948ff6d 100644 --- a/test/unit/unitTest.cxx +++ b/test/unit/unitTest.cxx @@ -36,6 +36,7 @@ #include <cstdarg> #include <vector> +#include <memory> #include "Platform.h" |
