newer msvc's are aware of __FUNCTION__

svn path=/trunk/; revision=18950
This commit is contained in:
Royce Mitchell III 2005-11-02 14:18:40 +00:00
parent 0f821d720d
commit 7a80b9dabf

View file

@ -17,7 +17,9 @@
#endif
#ifndef __GNUC__
#if !defined(_MSC_VER) || _MSC_VER < 8
#define __FUNCTION__ ""
#endif//_MSC_VER
#define inline __inline
#endif