From 49ba80115cfd2a242c2f0ee5e4c86c97e0a12acb Mon Sep 17 00:00:00 2001 From: Erik Schnetter Date: Fri, 22 Mar 2013 23:22:21 -0400 Subject: Do not use "using namespace std" any more --- vec_pseudo.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vec_pseudo.h') diff --git a/vec_pseudo.h b/vec_pseudo.h index ad3a70c..c39fa5c 100644 --- a/vec_pseudo.h +++ b/vec_pseudo.h @@ -379,7 +379,7 @@ namespace vecmathlib { { static std::string name_; if (name_.empty()) { - stringstream buf; + std::stringstream buf; buf << ""; name_ = buf.str(); } @@ -682,8 +682,8 @@ namespace vecmathlib { intvec_t res; for (int d=0; d::min(); - else if (r == FP_ILOGBNAN) r = numeric_limits::max(); + if (r == FP_ILOGB0) r = std::numeric_limits::min(); + else if (r == FP_ILOGBNAN) r = std::numeric_limits::max(); res.v[d] = r; } return res; -- cgit v1.1