diff options
| author | 2015-05-06 04:06:12 -0300 | |
|---|---|---|
| committer | 2015-05-07 15:45:22 -0300 | |
| commit | e1fbac3ca13d37d2625c11d30cfdece4327b446b (patch) | |
| tree | da5daf1999660dbc7e75290627051dd8534131c8 /src/common/common.h | |
| parent | Common: Move alignment macros to common_funcs.h (diff) | |
| download | yuzu-e1fbac3ca13d37d2625c11d30cfdece4327b446b.tar.gz yuzu-e1fbac3ca13d37d2625c11d30cfdece4327b446b.tar.xz yuzu-e1fbac3ca13d37d2625c11d30cfdece4327b446b.zip | |
Common: Remove common.h
Diffstat (limited to 'src/common/common.h')
| -rw-r--r-- | src/common/common.h | 21 |
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" | ||