aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJoe Mueller <unknown>2015-01-06 22:40:45 -0800
committerJoe Mueller <unknown>2015-01-06 22:40:45 -0800
commit6577a803c1a20e18daf4201bd854f8d6f352cbed (patch)
treec4f7b14f7607a935b1298f93d1155e3bb11a9590
parent9be0ef4488a9a4e06de29926e9edfcb109433b70 (diff)
downloadscintilla-mirror-6577a803c1a20e18daf4201bd854f8d6f352cbed.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"