From 8a588f9cf11356943c17eb64d81a98fbd142c5ea Mon Sep 17 00:00:00 2001 From: KUDr Date: Tue, 14 Nov 2006 12:02:36 +0000 Subject: (svn r7146) -CodeChange: ST_CONST macro removed as it is no longer needed (Tron) --- stdafx.h | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'stdafx.h') diff --git a/stdafx.h b/stdafx.h index 0dad62624..1db6ed38e 100644 --- a/stdafx.h +++ b/stdafx.h @@ -301,15 +301,4 @@ assert_compile(sizeof(uint8) == 1); #define EXTERN_C_BEGIN extern "C" { #define EXTERN_C_END } - -// workaround for VC6 bug: Error C2258 and error C2252 occur if you try -// to perform in-place initialization of static const integral member -// data in Visual C++ (see http://support.microsoft.com/kb/241569/) -#if defined(_MSC_VER) && (_MSC_VER < 1300) -# define ST_CONST(type, name_val) enum {name_val}; -#else -# define ST_CONST(type, name_val) static const type name_val; -#endif - - #endif /* STDAFX_H */ -- cgit v1.2.3-54-g00ecf