| author | |
| committer | |
| log | f6f0fefd8b69c0cc7d73317ca7295df50eae5fa0 |
| tree | f61cca21787cbdc57fc883cf583d4c6ba18a8bb1 |
| parent | fb948fbacc282c8e5354ae47eba79b8a38e6fe68 |
1 files changed, 3 insertions(+), 1 deletions(-)
lib/libcxx/src/tz.cpp+3-1| ... | ... | @@ -45,7 +45,9 @@ _LIBCPP_WEAK string_view __libcpp_tzdb_directory() { |
| 45 | 45 | #if defined(__linux__) |
| 46 | 46 | return "/usr/share/zoneinfo/"; |
| 47 | 47 | #else |
| 48 | # error "unknown path to the IANA Time Zone Database" | |
| 48 | // Zig patch: change this compilation error into a runtime crash. | |
| 49 | //# error "unknown path to the IANA Time Zone Database" | |
| 50 | abort(); | |
| 49 | 51 | #endif |
| 50 | 52 | } |
| 51 | 53 |