Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/util/util_logging.h
| Show First 20 Lines • Show All 43 Lines • ▼ Show 20 Lines | public: | ||||
| { | { | ||||
| } | } | ||||
| }; | }; | ||||
| # define LOG_SUPPRESS() (true) ? ((void)0) : LogMessageVoidify() & StubStream() | # define LOG_SUPPRESS() (true) ? ((void)0) : LogMessageVoidify() & StubStream() | ||||
| # define LOG(severity) LOG_SUPPRESS() | # define LOG(severity) LOG_SUPPRESS() | ||||
| # define VLOG(severity) LOG_SUPPRESS() | # define VLOG(severity) LOG_SUPPRESS() | ||||
| # define VLOG_IF(severity, condition) LOG_SUPPRESS() | # define VLOG_IF(severity, condition) LOG_SUPPRESS() | ||||
| # define VLOG_IS_ON(severity) false | |||||
| # define CHECK(expression) LOG_SUPPRESS() | # define CHECK(expression) LOG_SUPPRESS() | ||||
| # define CHECK_NOTNULL(expression) LOG_SUPPRESS() | # define CHECK_NOTNULL(expression) LOG_SUPPRESS() | ||||
| # define CHECK_NULL(expression) LOG_SUPPRESS() | # define CHECK_NULL(expression) LOG_SUPPRESS() | ||||
| # define CHECK_NEAR(actual, expected, eps) LOG_SUPPRESS() | # define CHECK_NEAR(actual, expected, eps) LOG_SUPPRESS() | ||||
| ▲ Show 20 Lines • Show All 41 Lines • Show Last 20 Lines | |||||