From 7a80b9dabf511c6ac0cb51175c96007a02c202ad Mon Sep 17 00:00:00 2001 From: Royce Mitchell III Date: Wed, 2 Nov 2005 14:18:40 +0000 Subject: [PATCH] newer msvc's are aware of __FUNCTION__ svn path=/trunk/; revision=18950 --- reactos/include/wine/debug.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reactos/include/wine/debug.h b/reactos/include/wine/debug.h index 244a67fd61e..80f7ca0d159 100644 --- a/reactos/include/wine/debug.h +++ b/reactos/include/wine/debug.h @@ -17,7 +17,9 @@ #endif #ifndef __GNUC__ +#if !defined(_MSC_VER) || _MSC_VER < 8 #define __FUNCTION__ "" +#endif//_MSC_VER #define inline __inline #endif