summaryrefslogtreecommitdiff
path: root/src/common/common.h
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2015-05-06 04:06:12 -0300
committerGravatar Yuri Kunde Schlesner2015-05-07 15:45:22 -0300
commite1fbac3ca13d37d2625c11d30cfdece4327b446b (patch)
treeda5daf1999660dbc7e75290627051dd8534131c8 /src/common/common.h
parentCommon: Move alignment macros to common_funcs.h (diff)
downloadyuzu-e1fbac3ca13d37d2625c11d30cfdece4327b446b.tar.gz
yuzu-e1fbac3ca13d37d2625c11d30cfdece4327b446b.tar.xz
yuzu-e1fbac3ca13d37d2625c11d30cfdece4327b446b.zip
Common: Remove common.h
Diffstat (limited to '')
-rw-r--r--src/common/common.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/common/common.h b/src/common/common.h
deleted file mode 100644
index a9d3a6e6a..000000000
--- a/src/common/common.h
+++ /dev/null
@@ -1,21 +0,0 @@
1// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included.
4
5#pragma once
6
7// DO NOT EVER INCLUDE <windows.h> directly _or indirectly_ from this file
8// since it slows down the build a lot.
9
10#include <cstdlib>
11#include <cstdio>
12#include <cstring>
13
14#include "common/assert.h"
15#include "common/logging/log.h"
16#include "common/common_types.h"
17#include "common/common_funcs.h"
18#include "common/common_paths.h"
19#include "common/platform.h"
20
21#include "swap.h"