define is no longer needed with recent VS 2019

This commit is contained in:
Holger Vogt 2020-04-16 12:02:30 +02:00
parent d8085ed594
commit a1a37d84a7
1 changed files with 0 additions and 5 deletions

View File

@ -8,8 +8,3 @@ extern INPparseNode *PT_mkbnode(const char *opstr, INPparseNode *arg1, INPparseN
extern INPparseNode *PT_mkfnode(const char *fname, INPparseNode *arg);
extern INPparseNode *PT_mknnode(double number);
extern INPparseNode *PT_mksnode(const char *string, void *ckt);
#if defined (_MSC_VER)
# define __func__ __FUNCTION__ /* __func__ is C99, but MSC can't */
#endif