File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -114,9 +114,9 @@ public abstract static class MathDoubleUnaryBuiltinNode extends MathUnaryBuiltin
114
114
115
115
public abstract double executeObject (Object value );
116
116
117
- public double count (double value ) {
117
+ public double count (@ SuppressWarnings ( "unused" ) double value ) {
118
118
throw raise (NotImplementedError , "count function in Math" );
119
- };
119
+ }
120
120
121
121
@ Specialization
122
122
public double doL (long value ) {
@@ -174,6 +174,7 @@ protected static BigDecimal sqrtBigNumber(BigInteger value) {
174
174
175
175
@ Specialization
176
176
@ TruffleBoundary
177
+ @ Override
177
178
public double doPI (PInt value ) {
178
179
BigInteger bValue = value .getValue ();
179
180
checkMathDomainError (bValue .compareTo (BigInteger .ZERO ) == -1 );
You can’t perform that action at this time.
0 commit comments