diff options
author | Jason Evans <jasone@canonware.com> | 2016-11-22 18:58:23 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2016-11-22 18:58:23 (GMT) |
commit | c3b85f25857cf4022be7b186adc1e20206d4c74f (patch) | |
tree | 4fd6f80c6e9518e9565a9efcac0dfa8944ba9646 | |
parent | 5234be21333e341252ed7223570d790970694d80 (diff) | |
download | jemalloc-c3b85f25857cf4022be7b186adc1e20206d4c74f.zip jemalloc-c3b85f25857cf4022be7b186adc1e20206d4c74f.tar.gz jemalloc-c3b85f25857cf4022be7b186adc1e20206d4c74f.tar.bz2 |
Style fixes.
-rw-r--r-- | include/jemalloc/internal/util.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/jemalloc/internal/util.h b/include/jemalloc/internal/util.h index aee00d6..119696b 100644 --- a/include/jemalloc/internal/util.h +++ b/include/jemalloc/internal/util.h @@ -56,17 +56,17 @@ * uninitialized. */ #ifdef JEMALLOC_CC_SILENCE -# define JEMALLOC_CC_SILENCE_INIT(v) = v +# define JEMALLOC_CC_SILENCE_INIT(v) = v #else -# define JEMALLOC_CC_SILENCE_INIT(v) +# define JEMALLOC_CC_SILENCE_INIT(v) #endif #ifdef __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(JEMALLOC_INTERNAL_UNREACHABLE) |