summaryrefslogtreecommitdiffstats
path: root/vec_base.h
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2013-02-03 13:07:15 -0500
committerErik Schnetter <schnetter@gmail.com>2013-02-03 13:07:15 -0500
commit68df6e89b5bc2bfab76204684cb446e84f358101 (patch)
treedcfee9c30f054fb6f9bce70a043f954858dea40c /vec_base.h
parentbbd6ffefaab78630f475468e5ef4c38672d93e65 (diff)
downloadvecmathlib-68df6e89b5bc2bfab76204684cb446e84f358101.zip
vecmathlib-68df6e89b5bc2bfab76204684cb446e84f358101.tar.gz
Correct indentation
Diffstat (limited to 'vec_base.h')
-rw-r--r--vec_base.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/vec_base.h b/vec_base.h
index 746556e..aa3efea 100644
--- a/vec_base.h
+++ b/vec_base.h
@@ -44,8 +44,8 @@ namespace vecmathlib {
template<typename real_t, int size>
inline
intvec<real_t, size> ifthen(boolvec<real_t, size> c,
- intvec<real_t, size> x,
- intvec<real_t, size> y)
+ intvec<real_t, size> x,
+ intvec<real_t, size> y)
{
return c.ifthen(x, y);
}
@@ -53,8 +53,8 @@ namespace vecmathlib {
template<typename real_t, int size>
inline
realvec<real_t, size> ifthen(boolvec<real_t, size> c,
- realvec<real_t, size> x,
- realvec<real_t, size> y)
+ realvec<real_t, size> x,
+ realvec<real_t, size> y)
{
return c.ifthen(x, y);
}
@@ -89,14 +89,14 @@ namespace vecmathlib {
template<typename real_t, int size>
inline intvec<real_t, size> lsr(intvec<real_t, size> x,
- typename intvec<real_t, size>::int_t n)
+ typename intvec<real_t, size>::int_t n)
{
return x.lsr(n);
}
template<typename real_t, int size>
inline intvec<real_t, size> lsr(intvec<real_t, size> x,
- intvec<real_t, size> n)
+ intvec<real_t, size> n)
{
return x.lsr(n);
}
@@ -177,7 +177,7 @@ namespace vecmathlib {
template<typename real_t, int size>
inline realvec<real_t, size> copysign(realvec<real_t, size> x,
- realvec<real_t, size> y)
+ realvec<real_t, size> y)
{
return x.copysign(y);
}
@@ -355,7 +355,7 @@ namespace vecmathlib {
template<typename real_t, int size>
inline
realvec<real_t, size> scalbn(realvec<real_t, size> x,
- intvec<real_t, size> n)
+ intvec<real_t, size> n)
{
return x.scalbn(n);
}
OpenPOWER on IntegriCloud