From 1a14b81c86c49d562486ab2c55a75c564144fa71 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Thu, 22 Jan 2009 20:29:12 +0000 Subject: Removed BodyHolder: minor performance improvement, opens the way for more efficient memory management. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@736783 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/sys/Thread.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpp/src/qpid/sys') diff --git a/cpp/src/qpid/sys/Thread.h b/cpp/src/qpid/sys/Thread.h index 2fd59621d8..e2b904aa1a 100644 --- a/cpp/src/qpid/sys/Thread.h +++ b/cpp/src/qpid/sys/Thread.h @@ -25,10 +25,10 @@ #ifdef _WIN32 # define QPID_TSS __declspec(thread) -#elif defined (gcc) +#elif defined (__GNUC__) # define QPID_TSS __thread #else -# define QPID_TSS +# error "Dont know how to define QPID_TSS for this platform" #endif namespace qpid { -- cgit v1.2.1