|
Boost-Commit : |
From: pdimov_at_[hidden]
Date: 2008-07-12 11:16:31
Author: pdimov
Date: 2008-07-12 11:16:31 EDT (Sat, 12 Jul 2008)
New Revision: 47356
URL: http://svn.boost.org/trac/boost/changeset/47356
Log:
Whitespace fix.
Text files modified:
branches/release/boost/shared_ptr.hpp | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
Modified: branches/release/boost/shared_ptr.hpp
==============================================================================
--- branches/release/boost/shared_ptr.hpp (original)
+++ branches/release/boost/shared_ptr.hpp 2008-07-12 11:16:31 EDT (Sat, 12 Jul 2008)
@@ -419,7 +419,7 @@
BOOST_ASSERT(px != 0);
return px;
}
-
+
T * get() const // never throws
{
return px;
@@ -453,13 +453,13 @@
( defined(__SUNPRO_CC) && BOOST_WORKAROUND(__SUNPRO_CC, <= 0x590) )
typedef T * (this_type::*unspecified_bool_type)() const;
-
+
operator unspecified_bool_type() const // never throws
{
return px == 0? 0: &this_type::get;
}
-#else
+#else
typedef T * this_type::*unspecified_bool_type;
@@ -679,7 +679,7 @@
template<class E, class T, class Y> basic_ostream<E, T> & operator<< (basic_ostream<E, T> & os, shared_ptr<Y> const & p)
# else
template<class E, class T, class Y> std::basic_ostream<E, T> & operator<< (std::basic_ostream<E, T> & os, shared_ptr<Y> const & p)
-# endif
+# endif
{
os << p.get();
return os;
@@ -719,7 +719,7 @@
#ifdef BOOST_MSVC
# pragma warning(pop)
-#endif
+#endif
#endif // #if defined(BOOST_NO_MEMBER_TEMPLATES) && !defined(BOOST_MSVC6_MEMBER_TEMPLATES)
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk