summaryrefslogtreecommitdiffstats
path: root/vec_builtin.h
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2013-08-21 14:06:40 -0400
committerErik Schnetter <schnetter@gmail.com>2013-08-21 14:06:40 -0400
commit96bb7ef9a533562cca0c45318d37029c3d939f86 (patch)
tree41da23e0bb12625e6f197beefdedc13c5080cd4f /vec_builtin.h
parent733a2dd58afc0a0c81f94316dbbc4955741ec84a (diff)
downloadvecmathlib-96bb7ef9a533562cca0c45318d37029c3d939f86.zip
vecmathlib-96bb7ef9a533562cca0c45318d37029c3d939f86.tar.gz
Make frexp take a pointer argument instead of a reference
Diffstat (limited to 'vec_builtin.h')
-rw-r--r--vec_builtin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vec_builtin.h b/vec_builtin.h
index f7db8ca..c09a290 100644
--- a/vec_builtin.h
+++ b/vec_builtin.h
@@ -532,7 +532,7 @@ namespace vecmathlib {
realvec_t fmax(realvec_t y) const { return MF::vml_fmax(*this, y); }
realvec_t fmin(realvec_t y) const { return MF::vml_fmin(*this, y); }
realvec_t fmod(realvec_t y) const { return MF::vml_fmod(*this, y); }
- realvec frexp(intvec_t& r) const { return MF::vml_frexp(*this, r); }
+ realvec frexp(intvec_t* r) const { return MF::vml_frexp(*this, r); }
realvec_t hypot(realvec_t y) const { return MF::vml_hypot(*this, y); }
intvec_t ilogb() const { return MF::vml_ilogb(*this); }
boolvec_t isfinite() const { return MF::vml_isfinite(*this); }
OpenPOWER on IntegriCloud