summaryrefslogtreecommitdiffstats
path: root/vec_sse_float1.h
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2013-06-17 19:35:05 -0400
committerErik Schnetter <schnetter@gmail.com>2013-06-17 19:35:05 -0400
commitfa767d75354f28600c01c7ca487c54f82fc49685 (patch)
treed1080cc56d4ac7f622fcb102c37277d4acf5dd52 /vec_sse_float1.h
parenta3559ff558a81a80fe86765966e4a7f2548d0ad3 (diff)
downloadvecmathlib-fa767d75354f28600c01c7ca487c54f82fc49685.zip
vecmathlib-fa767d75354f28600c01c7ca487c54f82fc49685.tar.gz
Add missing std:: namespace qualifier
Diffstat (limited to 'vec_sse_float1.h')
-rw-r--r--vec_sse_float1.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vec_sse_float1.h b/vec_sse_float1.h
index 9e3d12e..56ece24 100644
--- a/vec_sse_float1.h
+++ b/vec_sse_float1.h
@@ -425,8 +425,8 @@ namespace vecmathlib {
intvec_t ilogb() const
{
int_t r = std::ilogb(v);
- if (r == FP_ILOGB0) r = numeric_limits<int_t>::min();
- else if (r == FP_ILOGBNAN) r = numeric_limits<int_t>::max();
+ if (r == FP_ILOGB0) r = std::numeric_limits<int_t>::min();
+ else if (r == FP_ILOGBNAN) r = std::numeric_limits<int_t>::max();
return r;
}
boolvec_t isfinite() const { return std::isfinite(v); }
OpenPOWER on IntegriCloud