[Yake-svn] SF.net SVN: yake: [1621] trunk/yake/yake/base/templates/yakeSmartAssert.h
Status: Beta
Brought to you by:
psyclonist
From: <psy...@us...> - 2007-02-11 00:42:10
|
Revision: 1621 http://svn.sourceforge.net/yake/?rev=1621&view=rev Author: psyclonist Date: 2007-02-10 16:42:07 -0800 (Sat, 10 Feb 2007) Log Message: ----------- disabled MSVC warning Modified Paths: -------------- trunk/yake/yake/base/templates/yakeSmartAssert.h Modified: trunk/yake/yake/base/templates/yakeSmartAssert.h =================================================================== --- trunk/yake/yake/base/templates/yakeSmartAssert.h 2007-02-11 00:18:07 UTC (rev 1620) +++ trunk/yake/yake/base/templates/yakeSmartAssert.h 2007-02-11 00:42:07 UTC (rev 1621) @@ -130,7 +130,10 @@ private: SmartAssertContext mCtx; public: +#pragma warning(push) +#pragma warning(disable: 4355) // 'this': used in base member initializer list SmartAssert( const char * strExpr ) : YAKE_ASSERT_A(*this), YAKE_ASSERT_B(*this), mCtx(strExpr) {} +#pragma warning(pop) ~SmartAssert(); template< class type > This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |