| 25 | } |
| 26 | |
| 27 | void assertFatal(const bool condition, const char* message) { |
| 28 | if (!condition) { |
| 29 | yoga::log(LogLevel::Fatal, "%s\n", message); |
| 30 | fatalWithMessage(message); |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | void assertFatalWithNode( |
| 35 | const yoga::Node* const node, |
no test coverage detected