EllAlgo 1.6.13
Loading...
Searching...
No Matches
ell_assert.hpp
Go to the documentation of this file.
1
16#pragma once
17
28#if defined(__clang__) || defined(__GNUC__)
29# define ELL_LIKELY(x) __builtin_expect(!!(x), 1)
30#else
31# define ELL_LIKELY(x) (!!(x))
32#endif
33
45#if defined(__clang__) || defined(__GNUC__)
46# define ELL_UNLIKELY(x) __builtin_expect(!!(x), 0)
47#else
48# define ELL_UNLIKELY(x) (!!(x))
49#endif