#include <cassert>
#include <cstdio>
#include <cstdlib>
#include "tonic/common/log.h"
Go to the source code of this file.
◆ TONIC_CHECK
#define TONIC_CHECK |
( |
|
condition | ) |
|
Value: { \
abort(); \
} \
}
void Log(const char *format,...) SK_PRINTF_LIKE(1
Definition at line 23 of file macros.h.
◆ TONIC_DCHECK
◆ TONIC_DISALLOW_ASSIGN
#define TONIC_DISALLOW_ASSIGN |
( |
|
TypeName | ) |
void operator=(const TypeName&) = delete; |
◆ TONIC_DISALLOW_COPY
#define TONIC_DISALLOW_COPY |
( |
|
TypeName | ) |
TypeName(const TypeName&) = delete; |
◆ TONIC_DISALLOW_COPY_AND_ASSIGN
#define TONIC_DISALLOW_COPY_AND_ASSIGN |
( |
|
TypeName | ) |
|
Value:
TONIC_DISALLOW_ASSIGN(TypeName)
#define TONIC_DISALLOW_COPY(TypeName)
Definition at line 19 of file macros.h.