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.