Compare commits

...

2 Commits

Author SHA1 Message Date
nobody
b89628f09c This commit was manufactured by cvs2svn to create tag
'Version_1_34_1_RC1'.

[SVN r38058]
2007-06-22 01:24:25 +00:00
Eric Niebler
94db735438 gcc-4.2+ moved atomicity.hpp from bits/ to ext/
[SVN r37728]
2007-05-21 01:34:43 +00:00

View File

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