From: Amos Jeffries Date: Fri, 13 Nov 2009 00:36:13 +0000 (+1300) Subject: When function always not known we can omit it fully. X-Git-Tag: SQUID_3_2_0_1~582 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6e385bf3a79d58703c26ba22594e826d9ac45e54;p=thirdparty%2Fsquid.git When function always not known we can omit it fully. --- diff --git a/src/Debug.h b/src/Debug.h index 2f4fb433ec..1cce7073ea 100644 --- a/src/Debug.h +++ b/src/Debug.h @@ -120,7 +120,7 @@ const char * SkipBuildPrefix(const char* path); #ifdef __FUNCTION__ #define _SQUID__FUNCTION__ __FUNCTION__ #else -#define _SQUID__FUNCTION__ "(function unknown)" +#define _SQUID__FUNCTION__ "" #endif #define HERE SkipBuildPrefix(__FILE__)<<"("<<__LINE__<<") "<<_SQUID__FUNCTION__<<": "