Skip to content

Commit 998346a

Browse files
authored
Merge pull request #211 from tcbrindle/pr/fix-clang-19
Bump version of libc++ C++20 chrono workaround
2 parents bf97ba7 + d3e10c9 commit 998346a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example/calendar.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ constexpr auto col_sep = " ";
3030
constexpr auto row_sep = ' ';
3131

3232
// Workaround: libc++18 does not support C++20 chrono::time_point::operator++
33-
#if defined _LIBCPP_VERSION and _LIBCPP_VERSION < 190000
33+
#if defined _LIBCPP_VERSION and _LIBCPP_VERSION < 200000
3434
namespace std::chrono {
3535
sys_days& operator++(sys_days& d) {
3636
return d += days{1};

0 commit comments

Comments
 (0)