$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r60489 - in sandbox/statistics/detail/assign/boost/assign/auto_size: detail reference_wrapper
From: erwann.rogard_at_[hidden]
Date: 2010-03-11 14:24:08
Author: e_r
Date: 2010-03-11 14:24:07 EST (Thu, 11 Mar 2010)
New Revision: 60489
URL: http://svn.boost.org/trac/boost/changeset/60489
Log:
m
Added:
   sandbox/statistics/detail/assign/boost/assign/auto_size/reference_wrapper/has_copy_semantics.hpp
      - copied unchanged from r60400, /sandbox/statistics/detail/assign/boost/assign/auto_size/detail/has_copy_semantics.hpp
Removed:
   sandbox/statistics/detail/assign/boost/assign/auto_size/detail/has_copy_semantics.hpp
Deleted: sandbox/statistics/detail/assign/boost/assign/auto_size/detail/has_copy_semantics.hpp
==============================================================================
--- sandbox/statistics/detail/assign/boost/assign/auto_size/detail/has_copy_semantics.hpp	2010-03-11 14:24:07 EST (Thu, 11 Mar 2010)
+++ (empty file)
@@ -1,45 +0,0 @@
-//////////////////////////////////////////////////////////////////////////////
-// assign::detail::has_copy_semantics.hpp                                   //
-//                                                                          //
-//  (C) Copyright 2010 Erwann Rogard                                        //
-//  Use, modification and distribution are subject to the                   //
-//  Boost Software License, Version 1.0. (See accompanying file             //
-//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)        //
-//////////////////////////////////////////////////////////////////////////////
-#ifndef BOOST_ASSIGN_DETAIL_HAS_COPY_SEMANTICS_ER_2010_HPP
-#define BOOST_ASSIGN_DETAIL_HAS_COPY_SEMANTICS_ER_2010_HPP
-#include <boost/mpl/bool.hpp>
-
-namespace boost{
-namespace assign_detail{
-    template< class T > struct assign_reference;
-}
-namespace assign{
-namespace detail{
-
-    template<typename T> struct has_copy_semantics{};
-    
-    template< class T > struct assign_reference_copy;
-    template< class T > struct assign_reference_rebind;
-    
-    template<typename T>
-    struct has_copy_semantics<
-    	assign_detail::assign_reference<T> 
-    > : boost::mpl::bool_<false>{};
-
-    template<typename T>
-    struct has_copy_semantics<
-    	assign_reference_copy<T> 
-    > : boost::mpl::bool_<true>{};
-
-    template<typename T>
-    struct has_copy_semantics<
-    	assign_reference_rebind<T> 
-    > : boost::mpl::bool_<false>{};
-    
-}// detail
-}// assign
-}// boost
-
-#endif
-