We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
-Wmissing-field-initializers
1 parent e27f195 commit 64f0a8aCopy full SHA for 64f0a8a
include/swift/Runtime/DispatchShims.h
@@ -31,7 +31,11 @@ swift_dispatch_thread_get_current_override_qos_floor()
31
return dispatch_thread_get_current_override_qos_floor();
32
}
33
34
- return (dispatch_thread_override_info_s) {0};
+ return (dispatch_thread_override_info_s){
35
+ 0, // can_override
36
+ 0, // unused
37
+ QOS_CLASS_UNSPECIFIED, // override_qos_floor
38
+ };
39
40
41
static inline int
0 commit comments