9 Feb
2024
9 Feb
'24
10:01 a.m.
Jinoh Kang (@iamahuman) commented about dlls/win32u/win32u_private.h:
return !IsRectEmpty( dst ); }
+#if defined(__i386__) || defined(__x86_64__) +#define __SHARED_READ_SEQ( x ) (x) +#define __SHARED_READ_FENCE do {} while(0)
For consistency with most other noop macros: ```suggestion:-0+0 #define __SHARED_READ_FENCE ((void)0) ``` This way, `__SHARED_READ_FENCE` is always an expression (of type `void`) instead of a statement. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3103#note_60689