Update of /cvsroot/boost/boost/boost/archive/detail
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv5173

Modified Files:
        dynamically_initialized.hpp 
Log Message:
Work around GCC warning

Index: dynamically_initialized.hpp
===================================================================
RCS file: 
/cvsroot/boost/boost/boost/archive/detail/dynamically_initialized.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- dynamically_initialized.hpp 26 May 2006 21:38:15 -0000      1.2
+++ dynamically_initialized.hpp 5 Jul 2006 23:04:38 -0000       1.3
@@ -21,6 +21,13 @@
     
  private:
     static BOOST_DLLEXPORT T& get_instance();
+
+#if defined(__GNUC__)
+  // Workaround "warning: all member functions in class `
+  // boost::archive::detail::dynamically_initialized<T>' are private"
+ public:
+  void work_around_gcc_warning();
+#endif
 };
 
 template <class T>


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