소스 검색

reduce warnings when compiling unit tests

svn path=/trunk/mcs/; revision=43116
Sebastien Pouliot 21 년 전
부모
커밋
8294e1ecae
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      mcs/class/System.Drawing/Makefile

+ 1 - 1
mcs/class/System.Drawing/Makefile

@@ -6,6 +6,6 @@ LIBRARY = System.Drawing.dll
 
 LIB_MCS_FLAGS = /unsafe /r:$(corlib) /r:System.dll /nowarn:649 /nowarn:169
 
-TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) /nowarn:618 /r:System.Drawing.dll 
+TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) /r:System.Drawing.dll -nowarn:0618 -nowarn:219 -nowarn:169
 
 include ../../build/library.make