diff options
| author | 2014-09-02 22:40:02 -0700 | |
|---|---|---|
| committer | 2014-09-02 22:40:02 -0700 | |
| commit | 4795a64fc8ff59fced28735e627deb7c3b4575ed (patch) | |
| tree | b8f6161609efdd649769624b649445923d24935c /src/common/atomic.h | |
| parent | Merge pull request #69 from yuriks/cmake-cleanup (diff) | |
| download | yuzu-4795a64fc8ff59fced28735e627deb7c3b4575ed.tar.gz yuzu-4795a64fc8ff59fced28735e627deb7c3b4575ed.tar.xz yuzu-4795a64fc8ff59fced28735e627deb7c3b4575ed.zip | |
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 941f5ad5e..000000000 --- a/src/common/atomic.h +++ /dev/null | |||
| @@ -1,16 +0,0 @@ | |||
| 1 | // Copyright 2013 Dolphin Emulator Project | ||
| 2 | // Licensed under GPLv2 | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #pragma once | ||
| 6 | |||
| 7 | #ifdef _WIN32 | ||
| 8 | |||
| 9 | #include "common/atomic_win32.h" | ||
| 10 | |||
| 11 | #else | ||
| 12 | |||
| 13 | // GCC-compatible compiler assumed! | ||
| 14 | #include "common/atomic_gcc.h" | ||
| 15 | |||
| 16 | #endif | ||