diff options
author | Neil Hodgson <nyamatongwe@gmail.com> | 2018-07-10 15:38:33 +1000 |
---|---|---|
committer | Neil Hodgson <nyamatongwe@gmail.com> | 2018-07-10 15:38:33 +1000 |
commit | a8abe4e6fca2dbce9b4e464111c7cfa452008e99 (patch) | |
tree | be247127ea50e3e1f9f9db8bb20fc354e7bec271 | |
parent | a54f642e85ed2c7138bbf8248c12f62dc0fdb890 (diff) | |
download | scintilla-mirror-a8abe4e6fca2dbce9b4e464111c7cfa452008e99.tar.gz |
Need <string> for std::string.
-rw-r--r-- | src/CellBuffer.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/CellBuffer.cxx b/src/CellBuffer.cxx index ffe5fe8b3..4c08b0d91 100644 --- a/src/CellBuffer.cxx +++ b/src/CellBuffer.cxx @@ -13,6 +13,7 @@ #include <cstdarg> #include <stdexcept> +#include <string> #include <string_view> #include <vector> #include <algorithm> |