1 Apr
2025
1 Apr
'25
9:55 a.m.
Piotr Caban (@piotr) commented about dlls/msvcp140/tests/msvcp140.c:
p_setlocale(LC_ALL, "C"); }
+void test_codecvt_char16(void) +{ + char buffer[256]; + codecvt_char16 *this, *this2; + + this = (codecvt_char16 *)buffer;
Is there any reason for using `char[256]` buffer here instead of `codecvt_char16`? It's usually not very useful to check structure size this way since some fields may be unused in constructor. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7707#note_99514