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

Modified Files:
      Tag: RC_1_34_0
        atomic_count_gcc.hpp 
Log Message:
gcc-4.2+ moved atomicity.hpp from bits/ to ext/

Index: atomic_count_gcc.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/detail/atomic_count_gcc.hpp,v
retrieving revision 1.5
retrieving revision 1.5.8.1
diff -u -d -r1.5 -r1.5.8.1
--- atomic_count_gcc.hpp        2 Apr 2005 11:37:53 -0000       1.5
+++ atomic_count_gcc.hpp        21 May 2007 01:34:43 -0000      1.5.8.1
@@ -17,7 +17,11 @@
 //  http://www.boost.org/LICENSE_1_0.txt)
 //
 
-#include <bits/atomicity.h>
+#if (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 2))
+# include <ext/atomicity.h>
+#else
+# include <bits/atomicity.h>
+#endif
 
 namespace boost
 {


-------------------------------------------------------------------------
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