Fixed default value of bool in struct for Swift (#7072)

This commit is contained in:
nicked
2022-02-02 21:39:19 +01:00
committed by GitHub
parent 619b784374
commit a2b238960f
5 changed files with 149 additions and 29 deletions

8
tests/MutatingBool.fbs Normal file
View File

@@ -0,0 +1,8 @@
struct Property {
property: bool;
}
table TestMutatingBool {
b: Property;
}