Skip to content

Commit 24b4c2c

Browse files
authoredApr 25, 2023
removed constexpr for gcc
1 parent c86d834 commit 24b4c2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎include/get_time.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ std::enable_if_t<std::is_base_of_v<std::tm, T>, T> constexpr get_time(
260260

261261
} // namespace detail
262262

263-
auto constexpr get_time(std::string_view format, std::string_view date_str)
263+
auto get_time(std::string_view format, std::string_view date_str)
264264
-> std::chrono::system_clock::time_point {
265265
auto tm = detail::get_time<detail::tm>(format, date_str);
266266
auto time_t = mgutility::detail::mktime(tm);

0 commit comments

Comments
 (0)