Closed TimoFischer closed 6 years ago
Minimal change that caused a non-building code to compile: CMakeLists seems to configure for c++11, but the call to static_assert( condition ) is c++17. Changed to static_assert( condition, message ), which is c++11.
Thank you for fixing this compatibility issue.
Minimal change that caused a non-building code to compile: CMakeLists seems to configure for c++11, but the call to static_assert( condition ) is c++17. Changed to static_assert( condition, message ), which is c++11.