Go to the source code of this file.
◆ RETURN_IF_FAILED
#define RETURN_IF_FAILED |
( |
|
operation | ) |
|
Value: if (FAILED(operation)) { \
FML_LOG(ERROR) << #operation << " failed"; \
manager_ = nullptr; \
updateManager_ = nullptr; \
viewport_ = nullptr; \
return -1; \
}
Definition at line 13 of file direct_manipulation.cc.
◆ WARN_IF_FAILED
#define WARN_IF_FAILED |
( |
|
operation | ) |
|
Value: if (FAILED(operation)) { \
FML_LOG(ERROR) << #operation << " failed"; \
}
Definition at line 22 of file direct_manipulation.cc.