aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJoe Mueller <devnull@localhost>2015-01-06 22:40:45 -0800
committerJoe Mueller <devnull@localhost>2015-01-06 22:40:45 -0800
commit2fca15b9faf17bc18692b819962fe41647ef772f (patch)
treeea20735c6b4955fdffa87bca6f9037d6a0ae0332
parent2f1d2356ad85aa2aa568f7fc164ef6af9125dd8b (diff)
downloadscintilla-mirror-2fca15b9faf17bc18692b819962fe41647ef772f.tar.gz
attempt to fix compile errors with different versions of g++ caused by missing inclusion of algorithm header file.
-rw-r--r--lexers/LexVerilog.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/lexers/LexVerilog.cxx b/lexers/LexVerilog.cxx
index dae650bf8..6e62f5ba1 100644
--- a/lexers/LexVerilog.cxx
+++ b/lexers/LexVerilog.cxx
@@ -13,6 +13,11 @@
#include <assert.h>
#include <ctype.h>
+#include <string>
+#include <vector>
+#include <map>
+#include <algorithm>
+
#include "ILexer.h"
#include "Scintilla.h"
#include "SciLexer.h"
@@ -24,10 +29,6 @@
#include "CharacterSet.h"
#include "LexerModule.h"
-#include <string>
-#include <vector>
-#include <map>
-
#include "OptionSet.h"
#include "SubStyles.h"