diff options
author | nyamatongwe <devnull@localhost> | 2001-02-24 07:12:42 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-02-24 07:12:42 +0000 |
commit | 146e0cb2cf41390d5bb63b5a9bf00f28326d81ab (patch) | |
tree | d8ccfc86700e58144492880e8f11e7abbad115e6 /src | |
parent | fa367e04199e72a6fae9d6fd1bf2a3d27fceb683 (diff) | |
download | scintilla-mirror-146e0cb2cf41390d5bb63b5a9bf00f28326d81ab.tar.gz |
Patch from Jan to avoid warnings.
Diffstat (limited to 'src')
-rw-r--r-- | src/PosRegExp.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/PosRegExp.cxx b/src/PosRegExp.cxx index ea719b7c2..01870848d 100644 --- a/src/PosRegExp.cxx +++ b/src/PosRegExp.cxx @@ -5,6 +5,10 @@ #include "PosRegExp.h" +#ifdef _MSC_VER +#pragma warning(disable: 4244) +#endif + //Up: /[A-Z \x80-\x9f \xf0 ]/x //Lo: /[a-z \xa0-\xaf \xe0-\xef \xf1 ]/x //Wd: /[\d _ A-Z a-z \xa0-\xaf \xe0-\xf1 \x80-\x9f]/x |