Change constexpr to CONSTDATA

This commit is contained in:
Howard Hinnant 2020-07-07 15:01:45 -04:00
parent a6243ce56f
commit fe2f9c7eac

View File

@ -3715,7 +3715,7 @@ class decimal_format_seconds
using CT = typename std::common_type<Duration, std::chrono::seconds>::type; using CT = typename std::common_type<Duration, std::chrono::seconds>::type;
using rep = typename CT::rep; using rep = typename CT::rep;
public: public:
static unsigned constexpr width = detail::width<CT::period::den>::value < 19 ? static unsigned CONSTDATA width = detail::width<CT::period::den>::value < 19 ?
detail::width<CT::period::den>::value : 6u; detail::width<CT::period::den>::value : 6u;
using precision = std::chrono::duration<rep, using precision = std::chrono::duration<rep,
std::ratio<1, static_pow10<width>::value>>; std::ratio<1, static_pow10<width>::value>>;