diff options
| author | 2015-02-23 01:23:15 -0500 | |
|---|---|---|
| committer | 2015-02-23 01:23:15 -0500 | |
| commit | 50a0c4f14fc0c6df4db63a5593c6ff477736034c (patch) | |
| tree | 3ec4860e931eb307faf6cdd06504a82baad95e00 /src/common/common_funcs.h | |
| parent | Merge pull request #598 from Subv/dpt (diff) | |
| parent | Added information reporting from ThrowFatalError (diff) | |
| download | yuzu-50a0c4f14fc0c6df4db63a5593c6ff477736034c.tar.gz yuzu-50a0c4f14fc0c6df4db63a5593c6ff477736034c.tar.xz yuzu-50a0c4f14fc0c6df4db63a5593c6ff477736034c.zip | |
Merge pull request #581 from archshift/tfe
Added information reporting from ThrowFatalError
Diffstat (limited to 'src/common/common_funcs.h')
| -rw-r--r-- | src/common/common_funcs.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h index bc296ed3e..d56156e4a 100644 --- a/src/common/common_funcs.h +++ b/src/common/common_funcs.h | |||
| @@ -14,8 +14,6 @@ | |||
| 14 | #define SLEEP(x) usleep(x*1000) | 14 | #define SLEEP(x) usleep(x*1000) |
| 15 | #endif | 15 | #endif |
| 16 | 16 | ||
| 17 | template <bool> struct CompileTimeAssert; | ||
| 18 | template<> struct CompileTimeAssert<true> {}; | ||
| 19 | 17 | ||
| 20 | #define b2(x) ( (x) | ( (x) >> 1) ) | 18 | #define b2(x) ( (x) | ( (x) >> 1) ) |
| 21 | #define b4(x) ( b2(x) | ( b2(x) >> 2) ) | 19 | #define b4(x) ( b2(x) | ( b2(x) >> 2) ) |