Skip to content

Commit

Permalink
Fix failing BridgeSupport test (#98)
Browse files Browse the repository at this point in the history
BridgeSupport file format has changed.

Resolves: #96

Co-authored-by: Michael Bentley <[email protected]>
  • Loading branch information
defmacro-jam and Michael Bentley authored Nov 23, 2021
1 parent 08b07df commit 1b0cd7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion objc/NuBridgeSupport.m
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ + (void)importFramework:(NSString *) framework fromPath:(NSString *) path intoDi
forKey:[[node attributeForName:@"name"] stringValue]];
}
else if ([[node name] isEqual:@"enum"]) {
[enums setValue:@([[[node attributeForName:@"value"] stringValue] intValue])
[enums setValue:@([[[node attributeForName:@"value64"] stringValue] intValue])
forKey:[[node attributeForName:@"name"] stringValue]];
}
else if ([[node name] isEqual:@"function"]) {
Expand Down

0 comments on commit 1b0cd7f

Please sign in to comment.