diff options
Diffstat (limited to 'src/lib/math/hypot.go')
-rw-r--r-- | src/lib/math/hypot.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/math/hypot.go b/src/lib/math/hypot.go index 3b3c1e510..d1afac9e3 100644 --- a/src/lib/math/hypot.go +++ b/src/lib/math/hypot.go @@ -49,4 +49,5 @@ hypot(p, q float64) float64 q = q*r; r = q/p; } + panic("unreachable") } |