Skip to content

macro KFR_CHECK_IMPL

KFR_CHECK_IMPL(cond, kind, ...)                                                                      \
    do                                                                                                       \
    {                                                                                                        \
if (KFR_UNLIKELY(!(cond)))                                                                           \
    KFR_REPORT_ERROR(kind, VA_ARGS);                                                             \
    } while (0)

Defined at except.hpp:74