Update of /cvsroot/boost/boost/boost/test
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv1172/boost/test

Modified Files:
      Tag: RC_1_34_0
        test_tools.hpp 
Log Message:
Merge from HEAD:
Added missing export declarations.


Index: test_tools.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/test/test_tools.hpp,v
retrieving revision 1.60.2.2
retrieving revision 1.60.2.3
diff -u -d -r1.60.2.2 -r1.60.2.3
--- test_tools.hpp      30 Oct 2006 18:37:36 -0000      1.60.2.2
+++ test_tools.hpp      13 Nov 2006 20:06:57 -0000      1.60.2.3
@@ -281,7 +281,7 @@
 // ************************************************************************** 
//
 
 template<typename T>
-struct print_log_value {
+struct BOOST_TEST_DECL print_log_value {
     void    operator()( std::ostream& ostr, T const& t )
     {
         typedef typename mpl::or_<is_array<T>,is_function<T>,is_abstract<T> 
>::type couldnt_use_nl;
@@ -461,17 +461,17 @@
 
//____________________________________________________________________________//
 
 template <class Left, class Right>
-predicate_result    equal_impl( Left const& left, Right const& right )
+predicate_result BOOST_TEST_DECL equal_impl( Left const& left, Right const& 
right )
 {
     return left == right;
 }
 
 
//____________________________________________________________________________//
 
-predicate_result        equal_impl( char const* left, char const* right );
-inline predicate_result equal_impl( char* left, char const* right ) { return 
equal_impl( (char const*)left, (char const*)right ); }
-inline predicate_result equal_impl( char const* left, char* right ) { return 
equal_impl( (char const*)left, (char const*)right ); }
-inline predicate_result equal_impl( char* left, char* right )       { return 
equal_impl( (char const*)left, (char const*)right ); }
+predicate_result        BOOST_TEST_DECL equal_impl( char const* left, char 
const* right );
+inline predicate_result BOOST_TEST_DECL equal_impl( char* left, char const* 
right ) { return equal_impl( (char const*)left, (char const*)right ); }
+inline predicate_result BOOST_TEST_DECL equal_impl( char const* left, char* 
right ) { return equal_impl( (char const*)left, (char const*)right ); }
+inline predicate_result BOOST_TEST_DECL equal_impl( char* left, char* right )  
     { return equal_impl( (char const*)left, (char const*)right ); }
 
 #if !defined( BOOST_NO_CWCHAR )
 predicate_result        equal_impl( wchar_t const* left, wchar_t const* right 
);
@@ -582,7 +582,7 @@
 
 
//____________________________________________________________________________//
 
-bool is_defined_impl( const_string symbol_name, const_string symbol_value );
+bool BOOST_TEST_DECL is_defined_impl( const_string symbol_name, const_string 
symbol_value );
 
 
//____________________________________________________________________________//
 
@@ -602,6 +602,10 @@
 //  Revision History :
 //
 //  $Log$
+//  Revision 1.60.2.3  2006/11/13 20:06:57  jhunold
+//  Merge from HEAD:
+//  Added missing export declarations.
+//
 //  Revision 1.60.2.2  2006/10/30 18:37:36  johnmaddock
 //  Patch for serialisation test failures.
 //


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to