--- D:/Dev/WebLibs/wt-lib-64/include/Wt/Date/include/date/date - Kopie.h Wed Mar 19 22:06:51 2025 +++ D:/Dev/WebLibs/wt-lib-64/include/Wt/Date/include/date/date.h Wed Mar 19 22:07:43 2025 @@ -963,8 +963,8 @@ inline namespace literals { -CONSTCD11 date::day operator "" _d(unsigned long long d) NOEXCEPT; -CONSTCD11 date::year operator "" _y(unsigned long long y) NOEXCEPT; +CONSTCD11 date::day operator""_d(unsigned long long d) NOEXCEPT; +CONSTCD11 date::year operator""_y(unsigned long long y) NOEXCEPT; } // inline namespace literals #endif // !defined(_MSC_VER) || (_MSC_VER >= 1900) @@ -1972,7 +1972,7 @@ CONSTCD11 inline date::day -operator "" _d(unsigned long long d) NOEXCEPT +operator""_d(unsigned long long d) NOEXCEPT { return date::day{static_cast(d)}; } @@ -1980,7 +1980,7 @@ CONSTCD11 inline date::year -operator "" _y(unsigned long long y) NOEXCEPT +operator""_y(unsigned long long y) NOEXCEPT { return date::year(static_cast(y)); }