Go to the source code of this file.
◆ RETURN_IF_FAILED
| #define RETURN_IF_FAILED |
( |
|
operation | ) |
|
Value:
FML_LOG(ERROR) << #operation << " failed"; \
manager_ = nullptr; \
updateManager_ = nullptr; \
viewport_ = nullptr; \
return -1; \
}
Definition at line 14 of file direct_manipulation.cc.
15 { \
16 FML_LOG(ERROR) << #operation << " failed"; \
17 manager_ = nullptr; \
18 updateManager_ = nullptr; \
19 viewport_ = nullptr; \
20 return -1; \
21 }
◆ WARN_IF_FAILED
| #define WARN_IF_FAILED |
( |
|
operation | ) |
|
Value:
FML_LOG(ERROR) << #operation << " failed"; \
}
Definition at line 23 of file direct_manipulation.cc.
24 { \
25 FML_LOG(ERROR) << #operation << " failed"; \
26 }