소스 검색

ERR: Disabling some borland warnings.

Brad King 22 년 전
부모
커밋
e5a48ea031
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      Source/CTest/Curl/setup.h

+ 4 - 0
Source/CTest/Curl/setup.h

@@ -133,6 +133,10 @@ defined(HAVE_LIBSSL) && defined(HAVE_LIBCRYPTO)
 #pragma warning ( disable : 4312 ) /* Allow cast from long to char* */
 struct _RPC_ASYNC_STATE;
 #endif
+/* Disable unnecessary warnings on Borland */
+#ifdef __BORLANDC__
+#pragma warn -8004
+#endif
 #if !defined(__GNUC__) || defined(__MINGW32__)
 #define sclose(x) closesocket(x)
 #define sread(x,y,z) recv(x,y,z,0)