diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-10-28 01:08:27 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-10-28 01:08:27 +0100 |
commit | 7eb42bddb3a1ae99215387ca189eba7e85110344 (patch) | |
tree | 99193a71c851334a6112c7f45673ea7fc40688ea /idlc | |
parent | 54a17dd2466ebb9fcda181f5dd02c64a5508f306 (diff) |
windows: warning 4706 is disabled globally in com_MSC_defs.mk
So there is no need to do this locally, too.
Change-Id: Ibc623235cae07a86dfd0dbc1d7672ca4273facec
Diffstat (limited to 'idlc')
-rw-r--r-- | idlc/source/parser.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/idlc/source/parser.y b/idlc/source/parser.y index d7fba7efed40..da3853e3d161 100644 --- a/idlc/source/parser.y +++ b/idlc/source/parser.y @@ -214,7 +214,7 @@ bool includes(AstDeclaration const * type1, AstDeclaration const * type2) { #pragma disable_warn #elif defined _MSC_VER #pragma warning(push, 1) -#pragma warning(disable: 4273 4701 4702 4706) +#pragma warning(disable: 4273 4701 4702) #endif %} /* |