aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common/atomic.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/atomic.h')
-rw-r--r--src/common/atomic.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/common/atomic.h b/src/common/atomic.h
deleted file mode 100644
index 941f5ad5..00000000
--- 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