提交 a54191c4 authored 作者: Michael Jerris's avatar Michael Jerris

silence another unnecessary warning in msvc.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@664 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 9bfd7ae2
......@@ -46,8 +46,9 @@ extern "C" {
* C4142: A type is redefined in a manner that has no effect on the generated code.
* C4200: Non standard extension C zero sized array
* C4204: nonstandard extension used : non-constant aggregate initializer
* C4706: assignment within conditional expression
*/
#pragma warning(disable:4152 4054 4100 4142 4200 4204)
#pragma warning(disable:4152 4054 4100 4142 4200 4204 4706)
#if (_MSC_VER >= 1400) // VC8+
#ifndef _CRT_SECURE_NO_DEPRECATE
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论