Fix indentation inconsistencies.

This commit is contained in:
Igor Podlesny 2015-03-22 01:30:02 +07:00 committed by Jason Evans
parent fd5901ce30
commit 8ad6bf360f

View File

@ -28,11 +28,11 @@
#endif #endif
#ifdef __GNUC__ #ifdef __GNUC__
#define likely(x) __builtin_expect(!!(x), 1) # define likely(x) __builtin_expect(!!(x), 1)
#define unlikely(x) __builtin_expect(!!(x), 0) # define unlikely(x) __builtin_expect(!!(x), 0)
#else #else
#define likely(x) !!(x) # define likely(x) !!(x)
#define unlikely(x) !!(x) # define unlikely(x) !!(x)
#endif #endif
/* /*