aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2018-05-31 09:23:20 +1000
committerNeil <nyamatongwe@gmail.com>2018-05-31 09:23:20 +1000
commitc31087a0aab296176f8a8c16369855edc79b8e06 (patch)
tree827b9f2a0e98159415d5a3090e9a17c86b0be684 /src
parentf2ef0f3e866479c1c88eb899c8291a6d93f72928 (diff)
downloadscintilla-mirror-c31087a0aab296176f8a8c16369855edc79b8e06.tar.gz
Backport: Allow std::unique_ptr to be used more widely.
Backport of changeset 7008:1f95757fa242.
Diffstat (limited to 'src')
-rw-r--r--src/KeyMap.cxx1
-rw-r--r--src/Selection.cxx1
-rw-r--r--src/Style.cxx1
3 files changed, 3 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"