Replaced some tabs with spaces

This commit is contained in:
TheSumm
2015-12-11 01:51:55 +01:00
parent 80184a1249
commit 37f563d3d5
5 changed files with 11 additions and 10 deletions

View File

@@ -55,11 +55,11 @@
/// NB: These are used when speed is need most; do not use in normal
/// code, they may slow down stuff.
#if defined(__clang__) || defined(__GNUC__)
#define likely(x) __builtin_expect(!!(x), 1)
#define unlikely(x) __builtin_expect(!!(x), 0)
#define likely(x) __builtin_expect(!!(x), 1)
#define unlikely(x) __builtin_expect(!!(x), 0)
#else
#define likely(x) (x)
#define unlikely(x) (x)
#define likely(x) (x)
#define unlikely(x) (x)
#endif
#if !defined(_MSC_VER) && !defined(__GXX_EXPERIMENTAL_CXX0X__)