2
0
mirror of https://github.com/boostorg/atomic.git synced 2026-02-02 20:32:09 +00:00

Corrected BOOST_ATOMIC_LLONG_LOCK_FREE macro definition on Windows x64 platform.

[SVN r81831]
This commit is contained in:
Andrey Semashev
2012-12-10 18:56:34 +00:00
parent 548371c910
commit 4c200d702b

View File

@@ -140,7 +140,11 @@ public:
#define BOOST_ATOMIC_SHORT_LOCK_FREE 2
#define BOOST_ATOMIC_INT_LOCK_FREE 2
#define BOOST_ATOMIC_LONG_LOCK_FREE 2
#if defined(_WIN64)
#define BOOST_ATOMIC_LLONG_LOCK_FREE 2
#else
#define BOOST_ATOMIC_LLONG_LOCK_FREE 0
#endif
#define BOOST_ATOMIC_POINTER_LOCK_FREE 2
#define BOOST_ATOMIC_BOOL_LOCK_FREE 2