]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix build on msvc when building with non-english default codepage (strange carachters...
authorMichael Jerris <mike@jerris.com>
Wed, 19 Apr 2006 16:30:51 +0000 (16:30 +0000)
committerMichael Jerris <mike@jerris.com>
Wed, 19 Apr 2006 16:30:51 +0000 (16:30 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1197 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/include/switch_platform.h

index cffc599b200deef60c4e3af1d2bac972ecb959b8..bdeb8c287fb1f19966066ad965c272930cc0f5bd 100644 (file)
@@ -63,8 +63,9 @@ extern "C" {
  * C4706: assignment within conditional expression
  * C4055: type cast from data pointer to function pointer (apr carries function pointers as data pointers)
  * C4214: nonstandard extension used : bit field types other than int
+ * C4819: The file contains a character that cannot be represented in the current code page
  */
-#pragma warning(disable:4152 4054 4100 4142 4200 4204 4706 4055 4214)
+#pragma warning(disable:4152 4054 4100 4142 4200 4204 4706 4055 4214 4819)
 
 #if (_MSC_VER >= 1400) // VC8+
 #ifndef _CRT_SECURE_NO_DEPRECATE