diff options
author | nyamatongwe <unknown> | 2001-02-24 07:12:42 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-02-24 07:12:42 +0000 |
commit | 4498f83ecadd712b877544795f6140027db28568 (patch) | |
tree | d8ccfc86700e58144492880e8f11e7abbad115e6 /src | |
parent | a3fd4afaf184d4b5991ec3423addeed2c42e727d (diff) | |
download | scintilla-mirror-4498f83ecadd712b877544795f6140027db28568.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 |