From 6a97f3f9baed939aad7c344f4fd21590412b9c4a Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 23 Aug 2001 19:05:21 +0000 Subject: [PATCH] Tabs converted to spaces. [SVN r10916] --- include/boost/ref.hpp | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/include/boost/ref.hpp b/include/boost/ref.hpp index f8ab454..39ce4e3 100644 --- a/include/boost/ref.hpp +++ b/include/boost/ref.hpp @@ -6,18 +6,18 @@ #endif // -// ref.hpp - ref/cref, useful helper functions +// ref.hpp - ref/cref, useful helper functions // -// Version 1.00.0003 (2001-08-22) +// Version 1.00.0003 (2001-08-22) // -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) // -// Permission to copy, use, modify, sell and distribute this software -// is granted provided this copyright notice appears in all copies. -// This software is provided "as is" without express or implied -// warranty, and with no claim as to its suitability for any purpose. +// Permission to copy, use, modify, sell and distribute this software +// is granted provided this copyright notice appears in all copies. +// This software is provided "as is" without express or implied +// warranty, and with no claim as to its suitability for any purpose. // -// See http://www.boost.org/libs/bind/ref.html for documentation. +// See http://www.boost.org/libs/bind/ref.html for documentation. // namespace boost @@ -27,27 +27,27 @@ template class reference_wrapper { public: - explicit reference_wrapper(T & t): t_(t) {} + explicit reference_wrapper(T & t): t_(t) {} - operator T & () const { return t_; } + operator T & () const { return t_; } - T & get() const { return t_; } + T & get() const { return t_; } private: - T & t_; + T & t_; - reference_wrapper & operator= (reference_wrapper const &); + reference_wrapper & operator= (reference_wrapper const &); }; template inline reference_wrapper ref(T & t) { - return reference_wrapper(t); + return reference_wrapper(t); } template inline reference_wrapper cref(T const & t) { - return reference_wrapper(t); + return reference_wrapper(t); } } // namespace boost