aboutsummaryrefslogtreecommitdiffstats
path: root/common/atomic.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-11-26 14:48:26 -0800
committerChris Robinson <[email protected]>2018-11-26 14:48:26 -0800
commit053599b2435844eddcc084414ab9dd1c5ad7ec23 (patch)
treedd041ee64b6d056708ad500f5e6d5b0d144cecc7 /common/atomic.h
parenta6923790fac739f0b98db6c06bc93543b9707556 (diff)
Avoid using the ATOMIC() macro
Diffstat (limited to 'common/atomic.h')
-rw-r--r--common/atomic.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/common/atomic.h b/common/atomic.h
index eaae8fb8..15c34953 100644
--- a/common/atomic.h
+++ b/common/atomic.h
@@ -12,8 +12,6 @@
#define almemory_order_acq_rel std::memory_order_acq_rel
#define almemory_order_seq_cst std::memory_order_seq_cst
-#define ATOMIC(T) std::atomic<T>
-
#define ATOMIC_LOAD std::atomic_load_explicit
#define ATOMIC_STORE std::atomic_store_explicit