summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2014-12-16 14:03:57 -0500
committerNat Goodspeed <nat@lindenlab.com>2014-12-16 14:03:57 -0500
commit210c95b283332bc463edb8baa2d6438c3fd500af (patch)
treec562bc8e6aefdefb4ef0c819db5cf90582be19bf
parent6793fa569b9f4eec11b4df6de1fec61e3207fe4a (diff)
Remove Visual Studio workaround for lack of std::fpclassify().
Visual Studio 2013 evidently does provide std::fpclassify(), so we no longer need the funky local alias.
-rwxr-xr-xindra/test/llsd_new_tut.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/indra/test/llsd_new_tut.cpp b/indra/test/llsd_new_tut.cpp
index 81db191ca6..458df3361e 100755
--- a/indra/test/llsd_new_tut.cpp
+++ b/indra/test/llsd_new_tut.cpp
@@ -33,18 +33,7 @@
#include "llsdtraits.h"
#include "llstring.h"
-#if LL_WINDOWS
-#include <float.h>
-namespace
-{
- int fpclassify(double x)
- {
- return _fpclass(x);
- }
-}
-#else
using std::fpclassify;
-#endif
namespace tut
{