http://bugs.winehq.org/show_bug.cgi?id=57835
knox winehq-bugzilla@asdff45.de changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |winehq-bugzilla@asdff45.de
--- Comment #3 from knox winehq-bugzilla@asdff45.de --- Every usage of the stl function `std::chrono::current_zone` https://en.cppreference.com/w/cpp/chrono/current_zone.html causes this issue. There are also more unimplemented function that are used by the STL in the chrono library around timezones, e.g. __std_tzdb_get_sys_info.
Example code: ``` auto now = std::chrono::system_clock::now(); const std::chrono::time_zone* current_zone = nullptr; current_zone = std::chrono::current_zone(); auto local_time = std::chrono::zoned_time(current_zone, now);
std::cout << "Current local time: " << local_time << std::endl; std::cout << "Timezone name: " << current_zone->name() << std::endl; ```