mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
5 lines
110 B
C++
5 lines
110 B
C++
|
#pragma once
|
||
|
|
||
|
#define likely(x) (__builtin_expect(!!(x), 1))
|
||
|
#define unlikely(x) (__builtin_expect(!!(x), 0))
|