diff options
author | Erik Schnetter <schnetter@gmail.com> | 2013-07-07 13:46:34 -0400 |
---|---|---|
committer | Erik Schnetter <schnetter@gmail.com> | 2013-07-07 13:46:34 -0400 |
commit | 41fd9214b0ff3f49825dfd258d74b09686eba5b6 (patch) | |
tree | 6fcf2ea68fde65460fc3b1e9e9e596eb54e3e909 | |
parent | d2c01a5430ffa919c41e75b94fbf1edca191f1c3 (diff) | |
download | vecmathlib-41fd9214b0ff3f49825dfd258d74b09686eba5b6.zip vecmathlib-41fd9214b0ff3f49825dfd258d74b09686eba5b6.tar.gz |
Correct QPX iota()
-rw-r--r-- | vec_qpx_double4.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vec_qpx_double4.h b/vec_qpx_double4.h index a1177ab..2d5593d 100644 --- a/vec_qpx_double4.h +++ b/vec_qpx_double4.h @@ -162,7 +162,7 @@ namespace vecmathlib { } static intvec iota() { - const int_t iota_[] = {0, 1, 2, 4}; + const int_t iota_[] = {0, 1, 2, 3}; return intvec(iota_); } |