diff options
Diffstat (limited to 'vec_vsx_double2.h')
-rw-r--r-- | vec_vsx_double2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vec_vsx_double2.h b/vec_vsx_double2.h index 5104293..0908fbb 100644 --- a/vec_vsx_double2.h +++ b/vec_vsx_double2.h @@ -543,11 +543,11 @@ namespace vecmathlib { real_t maxval() const { - return std::fmax((*this)[0], (*this)[1]); + return vml_std::fmax((*this)[0], (*this)[1]); } real_t minval() const { - return std::fmin((*this)[0], (*this)[1]); + return vml_std::fmin((*this)[0], (*this)[1]); } real_t prod() const { |