Boost logo

Boost-Commit :

From: emil_at_[hidden]
Date: 2008-07-06 00:50:53


Author: emildotchevski
Date: 2008-07-06 00:50:53 EDT (Sun, 06 Jul 2008)
New Revision: 47126
URL: http://svn.boost.org/trac/boost/changeset/47126

Log:
Hopefully fixing the Como-specific problem reported by Robert Ramey.
Text files modified:
   trunk/boost/exception/detail/object_hex_dump.hpp | 1 +
   trunk/boost/exception/enable_current_exception.hpp | 2 ++
   trunk/boost/exception/enable_error_info.hpp | 1 +
   trunk/boost/exception/info.hpp | 2 ++
   trunk/boost/exception/info_tuple.hpp | 3 +++
   trunk/boost/exception/to_string.hpp | 2 ++
   trunk/boost/exception/to_string_stub.hpp | 4 ++++
   trunk/boost/exception_ptr.hpp | 2 ++
   8 files changed, 17 insertions(+), 0 deletions(-)

Modified: trunk/boost/exception/detail/object_hex_dump.hpp
==============================================================================
--- trunk/boost/exception/detail/object_hex_dump.hpp (original)
+++ trunk/boost/exception/detail/object_hex_dump.hpp 2008-07-06 00:50:53 EDT (Sun, 06 Jul 2008)
@@ -19,6 +19,7 @@
     exception_detail
         {
         template <class T>
+ inline
         std::string
         object_hex_dump( T const & x, size_t max_size=16 )
             {

Modified: trunk/boost/exception/enable_current_exception.hpp
==============================================================================
--- trunk/boost/exception/enable_current_exception.hpp (original)
+++ trunk/boost/exception/enable_current_exception.hpp 2008-07-06 00:50:53 EDT (Sun, 06 Jul 2008)
@@ -121,6 +121,7 @@
             };
 
         template <class T>
+ inline
         clone_base *
         make_clone( T const & x )
             {
@@ -144,6 +145,7 @@
         }
 
     template <class T>
+ inline
     exception_detail::clone_impl<T>
     enable_current_exception( T const & x )
         {

Modified: trunk/boost/exception/enable_error_info.hpp
==============================================================================
--- trunk/boost/exception/enable_error_info.hpp (original)
+++ trunk/boost/exception/enable_error_info.hpp 2008-07-06 00:50:53 EDT (Sun, 06 Jul 2008)
@@ -88,6 +88,7 @@
         }
 
     template <class T>
+ inline
 #if !BOOST_WORKAROUND(__BORLANDC__,BOOST_TESTED_AT(0x582))
     typename
 #endif

Modified: trunk/boost/exception/info.hpp
==============================================================================
--- trunk/boost/exception/info.hpp (original)
+++ trunk/boost/exception/info.hpp 2008-07-06 00:50:53 EDT (Sun, 06 Jul 2008)
@@ -86,6 +86,7 @@
         };
 
     template <class E,class Tag,class T>
+ inline
     E const &
     operator<<( E const & x, error_info<Tag,T> const & v )
         {
@@ -95,6 +96,7 @@
         }
 
     template <class ErrorInfo,class E>
+ inline
     shared_ptr<typename ErrorInfo::value_type const>
     get_error_info( E const & some_exception )
         {

Modified: trunk/boost/exception/info_tuple.hpp
==============================================================================
--- trunk/boost/exception/info_tuple.hpp (original)
+++ trunk/boost/exception/info_tuple.hpp 2008-07-06 00:50:53 EDT (Sun, 06 Jul 2008)
@@ -16,6 +16,7 @@
         class E,
         class Tag1,class T1,
         class Tag2,class T2 >
+ inline
     E const &
     operator<<(
         E const & x,
@@ -31,6 +32,7 @@
         class Tag1,class T1,
         class Tag2,class T2,
         class Tag3,class T3 >
+ inline
     E const &
     operator<<(
         E const & x,
@@ -48,6 +50,7 @@
         class Tag2,class T2,
         class Tag3,class T3,
         class Tag4,class T4 >
+ inline
     E const &
     operator<<(
         E const & x,

Modified: trunk/boost/exception/to_string.hpp
==============================================================================
--- trunk/boost/exception/to_string.hpp (original)
+++ trunk/boost/exception/to_string.hpp 2008-07-06 00:50:53 EDT (Sun, 06 Jul 2008)
@@ -39,6 +39,7 @@
         }
 
     template <class T>
+ inline
     typename enable_if<is_output_streamable<T>,std::string>::type
     to_string( T const & x )
         {
@@ -55,6 +56,7 @@
         };
 
     template <class T,class U>
+ inline
     std::string
     to_string( std::pair<T,U> const & x )
         {

Modified: trunk/boost/exception/to_string_stub.hpp
==============================================================================
--- trunk/boost/exception/to_string_stub.hpp (original)
+++ trunk/boost/exception/to_string_stub.hpp 2008-07-06 00:50:53 EDT (Sun, 06 Jul 2008)
@@ -63,6 +63,7 @@
         to_string_dispatch
             {
             template <class T,class Stub>
+ inline
             std::string
             dispatch( T const & x, Stub s )
                 {
@@ -71,6 +72,7 @@
             }
 
         template <class T>
+ inline
         std::string
         string_stub_dump( T const & x )
             {
@@ -79,6 +81,7 @@
         }
 
     template <class T>
+ inline
     std::string
     to_string_stub( T const & x )
         {
@@ -86,6 +89,7 @@
         }
 
     template <class T,class Stub>
+ inline
     std::string
     to_string_stub( T const & x, Stub s )
         {

Modified: trunk/boost/exception_ptr.hpp
==============================================================================
--- trunk/boost/exception_ptr.hpp (original)
+++ trunk/boost/exception_ptr.hpp 2008-07-06 00:50:53 EDT (Sun, 06 Jul 2008)
@@ -68,6 +68,7 @@
             };
 
         template <class T>
+ inline
         exception_ptr
         current_exception_std_exception( T const & e1 )
             {
@@ -170,6 +171,7 @@
         }
 
     template <class T>
+ inline
     exception_ptr
     copy_exception( T const & e )
         {


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