summaryrefslogtreecommitdiffstats
path: root/mathfuncs_base.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 /mathfuncs_base.h
parent733a2dd58afc0a0c81f94316dbbc4955741ec84a (diff)
downloadvecmathlib-96bb7ef9a533562cca0c45318d37029c3d939f86.zip
vecmathlib-96bb7ef9a533562cca0c45318d37029c3d939f86.tar.gz
Make frexp take a pointer argument instead of a reference
Diffstat (limited to 'mathfuncs_base.h')
-rw-r--r--mathfuncs_base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/mathfuncs_base.h b/mathfuncs_base.h
index 06cb590..f413d2d 100644
--- a/mathfuncs_base.h
+++ b/mathfuncs_base.h
@@ -67,7 +67,7 @@ namespace vecmathlib {
static realvec_t vml_fma(realvec_t x, realvec_t y, realvec_t z);
static realvec_t vml_fmax(realvec_t x, realvec_t y);
static realvec_t vml_fmin(realvec_t x, realvec_t y);
- static realvec_t vml_frexp(realvec_t x, intvec_t& r);
+ static realvec_t vml_frexp(realvec_t x, intvec_t* r);
static intvec_t vml_ilogb(realvec_t x);
static boolvec_t vml_ieee_isfinite(realvec_t x);
static boolvec_t vml_ieee_isinf(realvec_t x);
OpenPOWER on IntegriCloud