10000
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.
2 parents cddc4db + 20d8827 commit 9869b70Copy full SHA for 9869b70
Sources/_SwiftSyntaxCShims/include/AtomicBool.h
@@ -21,7 +21,7 @@ typedef struct {
21
} AtomicBool;
22
23
static inline AtomicBool *_Nonnull swiftsyntax_atomic_bool_create(bool initialValue) {
24
- AtomicBool *atomic = malloc(sizeof(AtomicBool));
+ AtomicBool *atomic = (AtomicBool *)malloc(sizeof(AtomicBool));
25
atomic->value = initialValue;
26
return atomic;
27
}
0 commit comments