From 8d2931067a59badd4595d1a28670e06117a86d6c Mon Sep 17 00:00:00 2001 From: weidai Date: Wed, 15 Aug 2007 23:36:16 +0000 Subject: [PATCH] fix warning on MSVC Orcas Beta 2 --- trunk/c5/config.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/trunk/c5/config.h b/trunk/c5/config.h index 8baba34f..fff8a561 100644 --- a/trunk/c5/config.h +++ b/trunk/c5/config.h @@ -239,7 +239,8 @@ NAMESPACE_END // 4661: no suitable definition provided for explicit template instantiation request // 4786: identifer was truncated in debug information // 4355: 'this' : used in base member initializer list -# pragma warning(disable: 4231 4250 4251 4275 4660 4661 4786 4355) + // 4910: '__declspec(dllexport)' and 'extern' are incompatible on an explicit instantiation +# pragma warning(disable: 4231 4250 4251 4275 4660 4661 4786 4355 4910) #endif #ifdef __BORLANDC__