Compare commits

...

2 Commits

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

[SVN r38193]
2007-07-12 01:07:47 +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
{