diff options
author | archshift <admin@archshift.com> | 2014-09-02 22:40:02 -0700 |
---|---|---|
committer | archshift <admin@archshift.com> | 2014-09-02 22:40:02 -0700 |
commit | 4795a64fc8ff59fced28735e627deb7c3b4575ed (patch) | |
tree | b8f6161609efdd649769624b649445923d24935c /src/common/atomic.h | |
parent | c0e48432cd262baa6ed84b33cd9dd0d8f585e345 (diff) |
Removed common/atomic, instead using std::atomic
Diffstat (limited to 'src/common/atomic.h')
-rw-r--r-- | src/common/atomic.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/common/atomic.h b/src/common/atomic.h deleted file mode 100644 index 941f5ad5ea..0000000000 --- a/src/common/atomic.h +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright 2013 Dolphin Emulator Project -// Licensed under GPLv2 -// Refer to the license.txt file included. - -#pragma once - -#ifdef _WIN32 - -#include "common/atomic_win32.h" - -#else - -// GCC-compatible compiler assumed! -#include "common/atomic_gcc.h" - -#endif |