diff options
-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 |