You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
239 B
12 lines
239 B
4 years ago
|
#if _MSC_VER < 1300
|
||
|
#define __func__ "???"
|
||
|
#else/* comment 1 */
|
||
|
#define __func__ __FUNCTION__
|
||
|
#endif/* comment 2 */
|
||
|
|
||
|
#if _MSC_VER < 1300
|
||
|
#define __func__ "???"
|
||
|
#else// comment 1
|
||
|
#define __func__ __FUNCTION__
|
||
|
#endif// comment 2
|