Skip to content

Commit 9a98137

Browse files
committed
Fixed missing parentheses
1 parent 9a125ff commit 9a98137

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/util/CoerceToComplexNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ PComplex toComplex(double x) {
8080
}
8181

8282
@Specialization
83-
PComplex toComplex(VirtualFrame frame, Object x, @Cached("createBinaryProfile") ConditionProfile complexProfile) {
83+
PComplex toComplex(VirtualFrame frame, Object x, @Cached("createBinaryProfile()") ConditionProfile complexProfile) {
8484
if (complexProfile.profile(x instanceof PComplex)) {
8585
return (PComplex) x;
8686
}

0 commit comments

Comments
 (0)