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 /src | |
parent | 45b004538871dcac7aa6f4a1f62a0fc3e7231693 (diff) | |
download | scintilla-mirror-793a375153519ae45ca8b3c9645fee347160d1a4.tar.gz |
Include <string_view> to allow future use in Platform interface and Unicode.
Diffstat (limited to 'src')
-rw-r--r-- | src/AutoComplete.cxx | 1 | ||||
-rw-r--r-- | src/CallTip.cxx | 1 | ||||
-rw-r--r-- | src/CaseConvert.cxx | 1 | ||||
-rw-r--r-- | src/CellBuffer.cxx | 1 | ||||
-rw-r--r-- | src/ContractionState.cxx | 1 | ||||
-rw-r--r-- | src/Decoration.cxx | 1 | ||||
-rw-r--r-- | src/Document.cxx | 1 | ||||
-rw-r--r-- | src/EditModel.cxx | 1 | ||||
-rw-r--r-- | src/EditView.cxx | 1 | ||||
-rw-r--r-- | src/Editor.cxx | 1 | ||||
-rw-r--r-- | src/ExternalLexer.cxx | 1 | ||||
-rw-r--r-- | src/Indicator.cxx | 1 | ||||
-rw-r--r-- | src/KeyMap.cxx | 1 | ||||
-rw-r--r-- | src/LineMarker.cxx | 1 | ||||
-rw-r--r-- | src/MarginView.cxx | 1 | ||||
-rw-r--r-- | src/PerLine.cxx | 1 | ||||
-rw-r--r-- | src/PositionCache.cxx | 1 | ||||
-rw-r--r-- | src/RunStyles.cxx | 1 | ||||
-rw-r--r-- | src/ScintillaBase.cxx | 1 | ||||
-rw-r--r-- | src/Selection.cxx | 1 | ||||
-rw-r--r-- | src/Style.cxx | 1 | ||||
-rw-r--r-- | src/UniConversion.cxx | 1 | ||||
-rw-r--r-- | src/ViewStyle.cxx | 1 | ||||
-rw-r--r-- | src/XPM.cxx | 1 |
24 files changed, 24 insertions, 0 deletions
diff --git a/src/AutoComplete.cxx b/src/AutoComplete.cxx index 886ace4af..7a8b6b201 100644 --- a/src/AutoComplete.cxx +++ b/src/AutoComplete.cxx @@ -13,6 +13,7 @@ #include <stdexcept> #include <string> +#include <string_view> #include <vector> #include <algorithm> #include <memory> diff --git a/src/CallTip.cxx b/src/CallTip.cxx index db287ea4a..1b40c185d 100644 --- a/src/CallTip.cxx +++ b/src/CallTip.cxx @@ -13,6 +13,7 @@ #include <stdexcept> #include <string> +#include <string_view> #include <algorithm> #include <memory> diff --git a/src/CaseConvert.cxx b/src/CaseConvert.cxx index 2d6db4eb7..8f5a25aa4 100644 --- a/src/CaseConvert.cxx +++ b/src/CaseConvert.cxx @@ -12,6 +12,7 @@ #include <stdexcept> #include <string> +#include <string_view> #include <vector> #include <algorithm> diff --git a/src/CellBuffer.cxx b/src/CellBuffer.cxx index f1ac548cc..e8c385f1f 100644 --- a/src/CellBuffer.cxx +++ b/src/CellBuffer.cxx @@ -12,6 +12,7 @@ #include <cstdarg> #include <stdexcept> +#include <string_view> #include <vector> #include <algorithm> #include <memory> diff --git a/src/ContractionState.cxx b/src/ContractionState.cxx index 57d9b7a1c..06b3b573d 100644 --- a/src/ContractionState.cxx +++ b/src/ContractionState.cxx @@ -10,6 +10,7 @@ #include <cstring> #include <stdexcept> +#include <string_view> #include <vector> #include <algorithm> #include <memory> diff --git a/src/Decoration.cxx b/src/Decoration.cxx index b69e05855..c5b00cbc1 100644 --- a/src/Decoration.cxx +++ b/src/Decoration.cxx @@ -11,6 +11,7 @@ #include <cstdarg> #include <stdexcept> +#include <string_view> #include <vector> #include <algorithm> #include <memory> diff --git a/src/Document.cxx b/src/Document.cxx index 12cd735ab..fbe387f6d 100644 --- a/src/Document.cxx +++ b/src/Document.cxx @@ -14,6 +14,7 @@ #include <stdexcept> #include <string> +#include <string_view> #include <vector> #include <forward_list> #include <algorithm> diff --git a/src/EditModel.cxx b/src/EditModel.cxx index a3a5096e8..c4c78fe02 100644 --- a/src/EditModel.cxx +++ b/src/EditModel.cxx @@ -13,6 +13,7 @@ #include <stdexcept> #include <string> +#include <string_view> #include <vector> #include <map> #include <algorithm> diff --git a/src/EditView.cxx b/src/EditView.cxx index 713aa482a..a63b666e5 100644 --- a/src/EditView.cxx +++ b/src/EditView.cxx @@ -15,6 +15,7 @@ #include <stdexcept> #include <string> +#include <string_view> #include <vector> #include <map> #include <forward_list> diff --git a/src/Editor.cxx b/src/Editor.cxx index 76e77a016..3a357f37e 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -15,6 +15,7 @@ #include <stdexcept> #include <string> +#include <string_view> #include <vector> #include <map> #include <forward_list> diff --git a/src/ExternalLexer.cxx b/src/ExternalLexer.cxx index 1ab96913a..54bd62939 100644 --- a/src/ExternalLexer.cxx +++ b/src/ExternalLexer.cxx @@ -11,6 +11,7 @@ #include <stdexcept> #include <string> +#include <string_view> #include <vector> #include <memory> diff --git a/src/Indicator.cxx b/src/Indicator.cxx index f9d0ca04a..0df7d7776 100644 --- a/src/Indicator.cxx +++ b/src/Indicator.cxx @@ -8,6 +8,7 @@ #include <cmath> #include <stdexcept> +#include <string_view> #include <vector> #include <map> #include <algorithm> diff --git a/src/KeyMap.cxx b/src/KeyMap.cxx index ee76ff052..37b0762d2 100644 --- a/src/KeyMap.cxx +++ b/src/KeyMap.cxx @@ -8,6 +8,7 @@ #include <cstdlib> #include <stdexcept> +#include <string_view> #include <vector> #include <map> diff --git a/src/LineMarker.cxx b/src/LineMarker.cxx index 7a66d5326..6f1e4b01a 100644 --- a/src/LineMarker.cxx +++ b/src/LineMarker.cxx @@ -9,6 +9,7 @@ #include <cmath> #include <stdexcept> +#include <string_view> #include <vector> #include <map> #include <algorithm> diff --git a/src/MarginView.cxx b/src/MarginView.cxx index 804ffcfcd..f9d566b44 100644 --- a/src/MarginView.cxx +++ b/src/MarginView.cxx @@ -15,6 +15,7 @@ #include <stdexcept> #include <string> +#include <string_view> #include <vector> #include <map> #include <algorithm> diff --git a/src/PerLine.cxx b/src/PerLine.cxx index 7a7fc24fa..d76c01d54 100644 --- a/src/PerLine.cxx +++ b/src/PerLine.cxx @@ -10,6 +10,7 @@ #include <cstring> #include <stdexcept> +#include <string_view> #include <vector> #include <forward_list> #include <algorithm> diff --git a/src/PositionCache.cxx b/src/PositionCache.cxx index 680afbacd..9769202c6 100644 --- a/src/PositionCache.cxx +++ b/src/PositionCache.cxx @@ -11,6 +11,7 @@ #include <stdexcept> #include <string> +#include <string_view> #include <vector> #include <map> #include <algorithm> diff --git a/src/RunStyles.cxx b/src/RunStyles.cxx index 95fe10ecd..44d694265 100644 --- a/src/RunStyles.cxx +++ b/src/RunStyles.cxx @@ -13,6 +13,7 @@ #include <climits> #include <stdexcept> +#include <string_view> #include <vector> #include <algorithm> #include <memory> diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index ad6366097..f24e7ca6f 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -12,6 +12,7 @@ #include <stdexcept> #include <string> +#include <string_view> #include <vector> #include <map> #include <algorithm> diff --git a/src/Selection.cxx b/src/Selection.cxx index 92a34f7da..5396746a3 100644 --- a/src/Selection.cxx +++ b/src/Selection.cxx @@ -9,6 +9,7 @@ #include <cstdlib> #include <stdexcept> +#include <string_view> #include <vector> #include <algorithm> diff --git a/src/Style.cxx b/src/Style.cxx index 40586b916..de69d52e5 100644 --- a/src/Style.cxx +++ b/src/Style.cxx @@ -6,6 +6,7 @@ // The License.txt file describes the conditions under which this software may be distributed. #include <stdexcept> +#include <string_view> #include "Platform.h" diff --git a/src/UniConversion.cxx b/src/UniConversion.cxx index 7aed2e7f4..a6830f950 100644 --- a/src/UniConversion.cxx +++ b/src/UniConversion.cxx @@ -9,6 +9,7 @@ #include <stdexcept> #include <string> +#include <string_view> #include "UniConversion.h" diff --git a/src/ViewStyle.cxx b/src/ViewStyle.cxx index 1e9d6d5a3..8a27f8bf2 100644 --- a/src/ViewStyle.cxx +++ b/src/ViewStyle.cxx @@ -10,6 +10,7 @@ #include <cstring> #include <stdexcept> +#include <string_view> #include <vector> #include <map> #include <algorithm> diff --git a/src/XPM.cxx b/src/XPM.cxx index 0d57873ac..65099a8b3 100644 --- a/src/XPM.cxx +++ b/src/XPM.cxx @@ -9,6 +9,7 @@ #include <cstring> #include <stdexcept> +#include <string_view> #include <vector> #include <map> #include <algorithm> |