Commit b20e71b 1 parent 7203552 commit b20e71b Copy full SHA for b20e71b
File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -669,10 +669,10 @@ inline double get_HUGE() {
669
669
// Microsoft version of math.h doesn't include acosh or asinh, so we just define them here.
670
670
// It was included from Visual Studio 2013
671
671
# if _MSC_VER < 1800
672
- static double acosh (double x) {
672
+ double acosh (double x) {
673
673
return log (x + sqrt (x * x - 1.0 ));
674
674
}
675
- static double asinh (double value) {
675
+ double asinh (double value) {
676
676
if (value > 0 ) {
677
677
return log (value + sqrt (value * value + 1 ));
678
678
} else {
@@ -684,10 +684,10 @@ static double asinh(double value) {
684
684
685
685
#if defined(__powerpc__)
686
686
// PPC version of math.h doesn't include acosh or asinh, so we just define them here
687
- static double acosh (double x) {
687
+ double acosh (double x) {
688
688
return log (x + sqrt (x * x - 1.0 ));
689
689
}
690
- static double asinh (double value) {
690
+ double asinh (double value) {
691
691
if (value > 0 ) {
692
692
return log (value + sqrt (value * value + 1 ));
693
693
} else {
You can’t perform that action at this time.
0 commit comments