https://issues.dlang.org/show_bug.cgi?id=24660
Issue ID: 24660
Summary: atomic_wchar_t has wrong size on Posix
Product: D
Version: D2
Hardware: x86_64
OS: Linux
Status: NEW
Severity: normal
Priority: P1
Component: druntime
Assignee: [email protected]
Reporter: [email protected]
atomic_wchar_t currently has size 2 on all platforms, but should have the same
size as wchar_t, which is platform dependent.
The problem was found by comparing type sizes in druntime with type sizes found
with ImportC: https://github.com/dlang/dmd/pull/16571
--