Skip to content

Commit 1b0cd7f

Browse files
defmacro-jamMichael Bentley
andauthored
Fix failing BridgeSupport test (#98)
BridgeSupport file format has changed. Resolves: #96 Co-authored-by: Michael Bentley <michael@based.af>
1 parent 08b07df commit 1b0cd7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

objc/NuBridgeSupport.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ + (void)importFramework:(NSString *) framework fromPath:(NSString *) path intoDi
7676
forKey:[[node attributeForName:@"name"] stringValue]];
7777
}
7878
else if ([[node name] isEqual:@"enum"]) {
79-
[enums setValue:@([[[node attributeForName:@"value"] stringValue] intValue])
79+
[enums setValue:@([[[node attributeForName:@"value64"] stringValue] intValue])
8080
forKey:[[node attributeForName:@"name"] stringValue]];
8181
}
8282
else if ([[node name] isEqual:@"function"]) {

0 commit comments

Comments
 (0)