File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 44cb46f7bfb869cc44f04bc93ee11c5027be2c33
2
+ refs/heads/master: 3515b4996ae5c151459222601306d538eebdc3b3
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 2d28d645422c1617be58c8ca7ad9a457264ca850
5
5
refs/heads/try: c50a9d5b664478e533ba1d1d353213d70c8ad589
Original file line number Diff line number Diff line change @@ -464,9 +464,8 @@ impl Hyperbolic for f32 {
464
464
#[ inline( always) ]
465
465
fn asinh ( & self ) -> f32 {
466
466
match * self {
467
- infinity => infinity,
468
467
neg_infinity => neg_infinity,
469
- x => ( x + ( ( x * x) + 1.0 ) . sqrt ( ) ) . ln ( ) ,
468
+ x => ( x + ( ( x * x) + 1.0 ) . sqrt ( ) ) . ln ( ) ,
470
469
}
471
470
}
472
471
Original file line number Diff line number Diff line change @@ -476,9 +476,8 @@ impl Hyperbolic for f64 {
476
476
#[ inline( always) ]
477
477
fn asinh ( & self ) -> f64 {
478
478
match * self {
479
- infinity => infinity,
480
479
neg_infinity => neg_infinity,
481
- x => ( x + ( ( x * x) + 1.0 ) . sqrt ( ) ) . ln ( ) ,
480
+ x => ( x + ( ( x * x) + 1.0 ) . sqrt ( ) ) . ln ( ) ,
482
481
}
483
482
}
484
483
You can’t perform that action at this time.
0 commit comments