From 48c5216ab2a7572ab2d0f4ed289dc328cc201c8c Mon Sep 17 00:00:00 2001 From: Jon Macey Date: Thu, 28 Nov 2024 18:19:22 +0000 Subject: [PATCH] removed win32 signbit --- src/Obj.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Obj.cpp b/src/Obj.cpp index f7e194bc..de413300 100644 --- a/src/Obj.cpp +++ b/src/Obj.cpp @@ -26,14 +26,14 @@ Copyright (C) 2009 Jon Macey #if defined(WIN32) -namespace std -{ -template < typename T > -bool signbit(T t) -{ - return signbit(double(t)); -} -} // namespace std +// namespace std +// { +// template < typename T > +// bool signbit(T t) +// { +// return signbit(double(t)); +// } +// } // namespace std #endif