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

Modified Files:
      Tag: RC_1_34_0
        test_tools.hpp 
Log Message:
Merge from HEAD: Add missing export macros for print_log_value<>

Index: test_tools.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/test/test_tools.hpp,v
retrieving revision 1.60.2.4
retrieving revision 1.60.2.5
diff -u -d -r1.60.2.4 -r1.60.2.5
--- test_tools.hpp      14 Nov 2006 07:35:43 -0000      1.60.2.4
+++ test_tools.hpp      14 Nov 2006 21:33:26 -0000      1.60.2.5
@@ -317,7 +317,7 @@
 template<typename T, std::size_t N >
 struct print_log_value< T[N] > {
     void    operator()( std::ostream& ostr, T const* t )
-    {   
+    {
         ostr << t;
     }
 };
@@ -326,28 +326,28 @@
 
//____________________________________________________________________________//
 
 template<>
-struct print_log_value<char> {
+struct BOOST_TEST_DECL print_log_value<char> {
     void    operator()( std::ostream& ostr, char t );
 };
 
 
//____________________________________________________________________________//
 
 template<>
-struct print_log_value<unsigned char> {
+struct BOOST_TEST_DECL print_log_value<unsigned char> {
     void    operator()( std::ostream& ostr, unsigned char t );
 };
 
 
//____________________________________________________________________________//
 
 template<>
-struct print_log_value<char const*> {
+struct BOOST_TEST_DECL print_log_value<char const*> {
     void    operator()( std::ostream& ostr, char const* t );
 };
 
 
//____________________________________________________________________________//
 
 template<>
-struct print_log_value<wchar_t const*> {
+struct BOOST_TEST_DECL print_log_value<wchar_t const*> {
     void    operator()( std::ostream& ostr, wchar_t const* t );
 };
 
@@ -602,6 +602,9 @@
 //  Revision History :
 //
 //  $Log$
+//  Revision 1.60.2.5  2006/11/14 21:33:26  jhunold
+//  Merge from HEAD: Add missing export macros for print_log_value<>
+//
 //  Revision 1.60.2.4  2006/11/14 07:35:43  jhunold
 //  Merge from HEAD: Removed wrong export declarations.
 //


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to