fatalWithMessage() - added warning suppression: unused 'message' argument #1803

Closed
inobelar wants to merge 1 commits from patch-2 into main

View File

@@ -19,6 +19,7 @@ namespace facebook::yoga {
#if defined(__cpp_exceptions)
throw std::logic_error(message);
#else
static_cast<void>(message); // Unused
std::terminate();
#endif
}