ptrendx commented on PR #21018: URL: https://github.com/apache/incubator-mxnet/pull/21018#issuecomment-1125289676
This is a legitimate failure - we are using C++17 which does not need message in static_assert, but the previous versions do (and 1.x uses older C++ standard) - you need to add the message to static_assert. This is the error message: ``` error: expected a comma (the one-argument version of static_assert is not enabled in this mode) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
