From 7ca2456e9c1b3f89a6bb749fc54d8a153ff51704 Mon Sep 17 00:00:00 2001 From: XAMPPRocky <4464295+XAMPPRocky@users.noreply.github.com> Date: Thu, 28 Oct 2021 09:14:01 +0200 Subject: [PATCH] Update float.rs --- src/float.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/float.rs b/src/float.rs index 5cda43e5..87fcc4d7 100644 --- a/src/float.rs +++ b/src/float.rs @@ -2154,7 +2154,6 @@ impl Float for f64 { libm::fmax as max(self, other: Self) -> Self; libm::fmin as min(self, other: Self) -> Self; libm::copysign as copysign(self, sign: Self) -> Self; - libm::copysignf as copysignf(self, sign: Self) -> Self; } }