diff options
author | Chris Robinson <[email protected]> | 2018-11-19 03:32:16 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-11-19 03:32:16 -0800 |
commit | e6c2c1f3b6795444a3719e26f203240511c6d464 (patch) | |
tree | 6dbfe381754930cc148bdc3b811575a764b60fc0 /common | |
parent | e24435ef58b2f28555e6397f502f41f36524dac9 (diff) |
Remove unnecessary using statements
Diffstat (limited to 'common')
-rw-r--r-- | common/atomic.h | 51 |
1 files changed, 16 insertions, 35 deletions
diff --git a/common/atomic.h b/common/atomic.h index e58a363c..d25f3122 100644 --- a/common/atomic.h +++ b/common/atomic.h @@ -16,45 +16,26 @@ #define CONST_CAST(T, V) ((T)(V)) #endif -#define _Atomic(T) std::atomic<T> -using std::memory_order; -using std::memory_order_relaxed; -using std::memory_order_consume; -using std::memory_order_acquire; -using std::memory_order_release; -using std::memory_order_acq_rel; -using std::memory_order_seq_cst; - -using std::atomic_init; -using std::atomic_load_explicit; -using std::atomic_store_explicit; -using std::atomic_fetch_add_explicit; -using std::atomic_fetch_sub_explicit; -using std::atomic_exchange_explicit; -using std::atomic_compare_exchange_strong_explicit; -using std::atomic_compare_exchange_weak_explicit; -using std::atomic_thread_fence; - -#define almemory_order memory_order -#define almemory_order_relaxed memory_order_relaxed -#define almemory_order_consume memory_order_consume -#define almemory_order_acquire memory_order_acquire -#define almemory_order_release memory_order_release -#define almemory_order_acq_rel memory_order_acq_rel -#define almemory_order_seq_cst memory_order_seq_cst - -#define ATOMIC(T) _Atomic(T) - -#define ATOMIC_INIT atomic_init +#define almemory_order std::memory_order +#define almemory_order_relaxed std::memory_order_relaxed +#define almemory_order_consume std::memory_order_consume +#define almemory_order_acquire std::memory_order_acquire +#define almemory_order_release std::memory_order_release +#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_INIT std::atomic_init #define ATOMIC_INIT_STATIC ATOMIC_VAR_INIT -#define ATOMIC_LOAD atomic_load_explicit -#define ATOMIC_STORE atomic_store_explicit +#define ATOMIC_LOAD std::atomic_load_explicit +#define ATOMIC_STORE std::atomic_store_explicit -#define ATOMIC_ADD atomic_fetch_add_explicit -#define ATOMIC_SUB atomic_fetch_sub_explicit +#define ATOMIC_ADD std::atomic_fetch_add_explicit +#define ATOMIC_SUB std::atomic_fetch_sub_explicit -#define ATOMIC_THREAD_FENCE atomic_thread_fence +#define ATOMIC_THREAD_FENCE std::atomic_thread_fence #define ATOMIC_LOAD_SEQ(_val) ATOMIC_LOAD(_val, almemory_order_seq_cst) |