mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 04:22:03 +00:00
use unlikely instead of BOOST_UNLIKELY
This commit is contained in:
parent
766883a0e3
commit
3dd4f2fb1e
@ -129,7 +129,7 @@ private:
|
||||
// SIMD optimization will be more efficient.
|
||||
static void process(const UInt8 * src, UInt8 * dst, UInt64 size, UInt64 repeat_time)
|
||||
{
|
||||
if (BOOST_UNLIKELY(repeat_time <= 0))
|
||||
if (unlikely(repeat_time <= 0))
|
||||
{
|
||||
*dst = 0;
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user