$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: fmhess_at_[hidden]
Date: 2007-12-21 13:55:35
Author: fmhess
Date: 2007-12-21 13:55:35 EST (Fri, 21 Dec 2007)
New Revision: 42232
URL: http://svn.boost.org/trac/boost/changeset/42232
Log:
Use koenig lookup to find swap() function.
Text files modified: 
   sandbox/thread_safe_signals/boost/thread_safe_signals/connection.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: sandbox/thread_safe_signals/boost/thread_safe_signals/connection.hpp
==============================================================================
--- sandbox/thread_safe_signals/boost/thread_safe_signals/connection.hpp	(original)
+++ sandbox/thread_safe_signals/boost/thread_safe_signals/connection.hpp	2007-12-21 13:55:35 EST (Fri, 21 Dec 2007)
@@ -172,7 +172,7 @@
       }
       void swap(connection &other)
       {
-        std::swap(_weakConnectionBody, other._weakConnectionBody);
+        swap(_weakConnectionBody, other._weakConnectionBody);
       }
     private: