CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: David White <[EMAIL PROTECTED]> 05/01/08 21:06:34
Modified files:
src : wassert.hpp
Log message:
fixes to make compile on VC++
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/wassert.hpp.diff?tr1=1.2&tr2=1.3&r1=text&r2=text
Patches:
Index: wesnoth/src/wassert.hpp
diff -u wesnoth/src/wassert.hpp:1.2 wesnoth/src/wassert.hpp:1.3
--- wesnoth/src/wassert.hpp:1.2 Sun Jan 2 19:14:52 2005
+++ wesnoth/src/wassert.hpp Sat Jan 8 21:06:34 2005
@@ -12,15 +12,7 @@
#ifndef WASSERT_HPP_INCLUDED
#define WASSERT_HPP_INCLUDED
-#ifdef _MSC_VER
-# define STANDARD_ASSERT_DOES_NOT_WORK
-#endif
-
-#ifdef STANDARD_ASSERT_DOES_NOT_WORK
-void wassert(bool expression);
-#else
#include <cassert>
#define wassert assert
-#endif
#endif