Skip to content

Commit dbd4e63

Browse files
author
Sriya Pratipati
committed
removed unnecessary const in parameter
1 parent fb5c770 commit dbd4e63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/fuzzing/math/asin_fuzz.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#include "utils/MPFRWrapper/mpfr_inc.h"
1515
#include <math.h>
1616

17-
extern "C" int LLVMFuzzerTestOneInput(const double x) {
17+
extern "C" int LLVMFuzzerTestOneInput(double x) {
1818
// remove NaN and inf and values outside accepted range
1919
if (isnan(x) || isinf(x) || x > 1 || x < -1)
2020
return 0;

0 commit comments

Comments
 (0)