diff options
author | Neil <nyamatongwe@gmail.com> | 2017-04-19 11:14:05 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2017-04-19 11:14:05 +1000 |
commit | a98c9ba801eae525a9f198d91340da90509af41c (patch) | |
tree | 52bf865dab9f80d6a930071341fa9b826a562e17 | |
parent | 98cbbdd0107bb11d202be6389590e945cd5e5b5a (diff) | |
download | scintilla-mirror-a98c9ba801eae525a9f198d91340da90509af41c.tar.gz |
Include header needed for std::lower_bound used in SparseState.h.
-rw-r--r-- | lexers/LexProgress.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lexers/LexProgress.cxx b/lexers/LexProgress.cxx index c82ca93ca..aaa3d4b2d 100644 --- a/lexers/LexProgress.cxx +++ b/lexers/LexProgress.cxx @@ -25,6 +25,7 @@ Differentiate between labels and variables #include <string> #include <vector> #include <map> +#include <algorithm> #include "ILexer.h" #include "Scintilla.h" |