$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r76115 - trunk/libs/move/doc
From: igaztanaga_at_[hidden]
Date: 2011-12-23 07:10:04
Author: igaztanaga
Date: 2011-12-23 07:10:03 EST (Fri, 23 Dec 2011)
New Revision: 76115
URL: http://svn.boost.org/trac/boost/changeset/76115
Log:
Bug #6183
Text files modified: 
   trunk/libs/move/doc/move.qbk |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/libs/move/doc/move.qbk
==============================================================================
--- trunk/libs/move/doc/move.qbk	(original)
+++ trunk/libs/move/doc/move.qbk	2011-12-23 07:10:03 EST (Fri, 23 Dec 2011)
@@ -49,7 +49,7 @@
 
 [c++]
 
-   template <class T> swap(T& a, T& b)
+   template <class T> void swap(T& a, T& b)
    {
       T tmp(a);   // now we have two copies of a
       a = b;      // now we have two copies of b
@@ -60,7 +60,7 @@
 
 [c++]
 
-   template <class T> swap(T& a, T& b)
+   template <class T> void swap(T& a, T& b)
    {
       T tmp(::boost::move(a));
       a = ::boost::move(b);