|
using to_underlying = std::to_underlying; |
Hello,
When testing locally with C++23 enabled, we found we had to slightly modify sc_pcl.h. We now include <utility>, modified the preprocessor conditional, and changed the referenced lines to:
#if __cplusplus >= 202302L
using std::to_underlying;
#else
Streamline/include/sl_pcl.h
Line 91 in 019994e
Hello,
When testing locally with C++23 enabled, we found we had to slightly modify sc_pcl.h. We now include
<utility>, modified the preprocessor conditional, and changed the referenced lines to: