$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: anthony_at_[hidden]
Date: 2007-11-26 07:17:45
Author: anthonyw
Date: 2007-11-26 07:17:45 EST (Mon, 26 Nov 2007)
New Revision: 41395
URL: http://svn.boost.org/trac/boost/changeset/41395
Log:
workaround for Borland compiler
Text files modified: 
   trunk/libs/thread/src/win32/thread.cpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/libs/thread/src/win32/thread.cpp
==============================================================================
--- trunk/libs/thread/src/win32/thread.cpp	(original)
+++ trunk/libs/thread/src/win32/thread.cpp	2007-11-26 07:17:45 EST (Mon, 26 Nov 2007)
@@ -494,7 +494,7 @@
             tss_cleanup_implemented(); // if anyone uses TSS, we need the cleanup linked in
             if(tss_data_node* const current_node=find_tss_data(key))
             {
-                if(cleanup_existing && current_node->func)
+                if(cleanup_existing && current_node->func.get())
                 {
                     (*current_node->func)(current_node->value);
                 }