Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r60872 - sandbox/function/boost/function
From: dsaritz_at_[hidden]
Date: 2010-03-27 09:21:19


Author: psiha
Date: 2010-03-27 09:21:18 EDT (Sat, 27 Mar 2010)
New Revision: 60872
URL: http://svn.boost.org/trac/boost/changeset/60872

Log:
Minor stylistic changes.
Text files modified:
   sandbox/function/boost/function/function_template.hpp | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: sandbox/function/boost/function/function_template.hpp
==============================================================================
--- sandbox/function/boost/function/function_template.hpp (original)
+++ sandbox/function/boost/function/function_template.hpp 2010-03-27 09:21:18 EDT (Sat, 27 Mar 2010)
@@ -95,7 +95,7 @@
                )
            );
            // unwrap_ref is needed because boost::reference_wrapper<T>, unlike
- // the one from std::tr1, does not support callable objects
+ // the one from std::tr1, does not support callable objects.
            return unwrap_ref( functionObject )( BOOST_FUNCTION_ARGS );
        }
      };
@@ -110,7 +110,7 @@
       {
           BOOST_FUNCTION_VOID_RETURN_TYPE invoke(BOOST_FUNCTION_PARMS)
           {
- // see the above comments for the non-void invoker
+ // See the above comments for the non-void invoker.
               FunctionObj & functionObject( *static_cast<FunctionObj *>( static_cast<void *>( FunctionObjManager::functor_ptr( buffer ) ) ) );
               BOOST_FUNCTION_RETURN( unwrap_ref( functionObject )( BOOST_FUNCTION_ARGS ) );
           }


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