summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar snowdrop2005-07-23 23:14:31 +0000
committerGravatar snowdrop2005-07-23 23:14:31 +0000
commitb85140b4fefe61a35103b96814efa282f079af18 (patch)
tree0859a395bb01a069a7fc9f6ba0c1509aaf5dda41
parent3a2ad9f940fff49f4d8e53f6e2e81b3d9a6ae305 (diff)
downloadcsoap-b85140b4fefe61a35103b96814efa282f079af18.tar.gz
csoap-b85140b4fefe61a35103b96814efa282f079af18.tar.bz2
changed if _MSVER ...
-rw-r--r--nanohttp/nanohttp-common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/nanohttp/nanohttp-common.h b/nanohttp/nanohttp-common.h
index 88f8f67..ef025a6 100644
--- a/nanohttp/nanohttp-common.h
+++ b/nanohttp/nanohttp-common.h
@@ -1,5 +1,5 @@
/******************************************************************
- * $Id: nanohttp-common.h,v 1.18 2004/11/05 11:58:01 snowdrop Exp $
+ * $Id: nanohttp-common.h,v 1.19 2005/07/23 23:14:31 snowdrop Exp $
*
* CSOAP Project: A http client/server library in C
* Copyright (C) 2003-2004 Ferhat Ayaz
@@ -480,7 +480,7 @@ void log_set_file(const char *filename);
char *log_get_file();
#ifdef WIN32
- #ifndef __FUNCTION__
+ #if defined(_MSC_VER) && _MSC_VER <= 1200
char *VisualC_funcname(const char* file, int line); /* not thread safe!*/
#define __FUNCTION__ VisualC_funcname(__FILE__, __LINE__)
#endif