diff options
author | Neil <nyamatongwe@gmail.com> | 2017-04-22 08:28:58 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2017-04-22 08:28:58 +1000 |
commit | af243dd42dabdabd15a92a295d66f721e44dd473 (patch) | |
tree | 5d55455f18abb19d78113777c4340fc3ed89fee7 /test | |
parent | 596e7f91811d9d39853051e0dee691e490ce95e0 (diff) | |
download | scintilla-mirror-af243dd42dabdabd15a92a295d66f721e44dd473.tar.gz |
Include <memory> for std::unique_ptr.
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/testCellBuffer.cxx | 1 | ||||
-rw-r--r-- | test/unit/testCharClassify.cxx | 1 | ||||
-rw-r--r-- | test/unit/testContractionState.cxx | 1 | ||||
-rw-r--r-- | test/unit/testDecoration.cxx | 1 | ||||
-rw-r--r-- | test/unit/testPartitioning.cxx | 1 | ||||
-rw-r--r-- | test/unit/testRunStyles.cxx | 1 | ||||
-rw-r--r-- | test/unit/testSparseState.cxx | 1 | ||||
-rw-r--r-- | test/unit/testSparseVector.cxx | 1 | ||||
-rw-r--r-- | test/unit/testSplitVector.cxx | 1 |
9 files changed, 9 insertions, 0 deletions
diff --git a/test/unit/testCellBuffer.cxx b/test/unit/testCellBuffer.cxx index 7a13e88b8..f6cdf770d 100644 --- a/test/unit/testCellBuffer.cxx +++ b/test/unit/testCellBuffer.cxx @@ -3,6 +3,7 @@ #include <cstring> #include <stdexcept> #include <algorithm> +#include <memory> #include "Platform.h" diff --git a/test/unit/testCharClassify.cxx b/test/unit/testCharClassify.cxx index b682d8b2d..9b33fbeaf 100644 --- a/test/unit/testCharClassify.cxx +++ b/test/unit/testCharClassify.cxx @@ -3,6 +3,7 @@ #include <cstring> #include <algorithm> +#include <memory> #include <iostream> #include "Platform.h" diff --git a/test/unit/testContractionState.cxx b/test/unit/testContractionState.cxx index 3c6f2f669..989aa409d 100644 --- a/test/unit/testContractionState.cxx +++ b/test/unit/testContractionState.cxx @@ -4,6 +4,7 @@ #include <stdexcept> #include <algorithm> +#include <memory> #include "Platform.h" diff --git a/test/unit/testDecoration.cxx b/test/unit/testDecoration.cxx index bbd07b868..9c9532300 100644 --- a/test/unit/testDecoration.cxx +++ b/test/unit/testDecoration.cxx @@ -4,6 +4,7 @@ #include <stdexcept> #include <algorithm> +#include <memory> #include "Platform.h" diff --git a/test/unit/testPartitioning.cxx b/test/unit/testPartitioning.cxx index 513fa0fea..008c140d8 100644 --- a/test/unit/testPartitioning.cxx +++ b/test/unit/testPartitioning.cxx @@ -4,6 +4,7 @@ #include <stdexcept> #include <algorithm> +#include <memory> #include "Platform.h" diff --git a/test/unit/testRunStyles.cxx b/test/unit/testRunStyles.cxx index 19d784fd9..72840322c 100644 --- a/test/unit/testRunStyles.cxx +++ b/test/unit/testRunStyles.cxx @@ -4,6 +4,7 @@ #include <stdexcept> #include <algorithm> +#include <memory> #include "Platform.h" diff --git a/test/unit/testSparseState.cxx b/test/unit/testSparseState.cxx index 64bdf64a5..1739ac77f 100644 --- a/test/unit/testSparseState.cxx +++ b/test/unit/testSparseState.cxx @@ -3,6 +3,7 @@ #include <string> #include <vector> #include <algorithm> +#include <memory> #include "Platform.h" diff --git a/test/unit/testSparseVector.cxx b/test/unit/testSparseVector.cxx index 8b9c8a140..ad0110ae0 100644 --- a/test/unit/testSparseVector.cxx +++ b/test/unit/testSparseVector.cxx @@ -5,6 +5,7 @@ #include <stdexcept> #include <algorithm> +#include <memory> #include "Platform.h" diff --git a/test/unit/testSplitVector.cxx b/test/unit/testSplitVector.cxx index c58accc84..3af51c45e 100644 --- a/test/unit/testSplitVector.cxx +++ b/test/unit/testSplitVector.cxx @@ -4,6 +4,7 @@ #include <stdexcept> #include <algorithm> +#include <memory> #include "Platform.h" |