diff options
author | nyamatongwe <nyamatongwe@gmail.com> | 2013-07-23 11:13:57 +1000 |
---|---|---|
committer | nyamatongwe <nyamatongwe@gmail.com> | 2013-07-23 11:13:57 +1000 |
commit | c570c7c6fb1abc780510efd5eee6c3a9131a54e4 (patch) | |
tree | 817ff2215fa00425d00e6a81fcbd00442c2d09ac /cocoa/ScintillaCocoa.h | |
parent | 199d7ee000fcb1ce24d3f4a919dc825e6c0d2f45 (diff) | |
download | scintilla-mirror-c570c7c6fb1abc780510efd5eee6c3a9131a54e4.tar.gz |
Only use map for character representations instead of unordered_map where possible.
unordered_map caused too many porting problems.
Diffstat (limited to 'cocoa/ScintillaCocoa.h')
-rw-r--r-- | cocoa/ScintillaCocoa.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cocoa/ScintillaCocoa.h b/cocoa/ScintillaCocoa.h index cddce4b5b..9b2c9fa1e 100644 --- a/cocoa/ScintillaCocoa.h +++ b/cocoa/ScintillaCocoa.h @@ -21,9 +21,6 @@ #include <vector> #include <map> -#ifndef SCINTILLA_NO_UNORDERED_MAP -#include <unordered_map> -#endif #include "ILexer.h" |