From 878d68bb214d40aae5e2545c13233d9745da73eb Mon Sep 17 00:00:00 2001 From: Vincent Herbet Date: Tue, 10 Sep 2013 09:04:52 +0200 Subject: [PATCH] Backed out changeset: 2bc36c43b15f Former-commit-id: 0f14674ff19adc5bd1461bc622a01c3064281026 --- plugins/include/float.inc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/plugins/include/float.inc b/plugins/include/float.inc index 698a2981..35b65aea 100755 --- a/plugins/include/float.inc +++ b/plugins/include/float.inc @@ -173,14 +173,10 @@ stock bool:operator<=(oper1, Float:oper2) stock bool:operator!(Float:oper) return (_:oper & ((-1)/2)) == 0; /* -1 = all bits to 1; /2 = remove most significant bit (sign) works on both 32bit and 64bit systems; no constant required */ -stock Float:operator=(oper) - return float(oper); - /* forbidden operations */ forward operator%(Float:oper1, Float:oper2); forward operator%(Float:oper1, oper2); forward operator%(oper1, Float:oper2); -forward operator=(Float:oper); stock Float:floatmin(Float:ValueA, Float:ValueB)