diff options
author | Neil <nyamatongwe@gmail.com> | 2014-10-16 13:49:51 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2014-10-16 13:49:51 +1100 |
commit | 58fe73196352562c405f8fddda13533989a85b30 (patch) | |
tree | 60870962774e47020a788fb730653c34bca6d0c0 | |
parent | dc8598f54601fe734184e7fd69f0a2fe653077b8 (diff) | |
download | scintilla-mirror-58fe73196352562c405f8fddda13533989a85b30.tar.gz |
Bug [#1666]. Include <stdexcept> due to report of a problem with compiling
Document.h with some versions of MinGW.
-rw-r--r-- | win32/ScintillaWin.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index 86e274178..71cf7fc7d 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -12,6 +12,7 @@ #include <ctype.h> #include <limits.h> +#include <stdexcept> #include <new> #include <string> #include <vector> |