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

Modified Files:
        path.hpp 
Log Message:
disable problematic specialization for aCC and cxx on Alpha platforms

Index: path.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/filesystem/path.hpp,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- path.hpp    3 Nov 2006 16:57:29 -0000       1.24
+++ path.hpp    2 May 2007 02:38:18 -0000       1.25
@@ -611,8 +611,10 @@
       boost::shared_ptr<m_imp> m_imp_ptr;
     };
 
-// TODO: Figure out why this specialization is causing problems with GCC
-#ifndef __GNUC__
+// This specialization is causing problems with GCC, aCC (HP-UX)
+// and cxx on Alpha platforms.
+#if !(defined(__GNUC__) || defined(__HP_aCC) || \
+      (defined(__DECCXX) && defined(__alpha)))
     template<> const char * basic_filesystem_error<path>::what() const throw()
     {
       if ( !m_imp_ptr.get() ) return system_error::what();


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to