summaryrefslogtreecommitdiffstats
path: root/thirdparty/embree/common/simd/varying.h
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/embree/common/simd/varying.h')
-rw-r--r--thirdparty/embree/common/simd/varying.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/thirdparty/embree/common/simd/varying.h b/thirdparty/embree/common/simd/varying.h
index 9b98d326be..20fd3cac48 100644
--- a/thirdparty/embree/common/simd/varying.h
+++ b/thirdparty/embree/common/simd/varying.h
@@ -15,7 +15,7 @@ namespace embree
__forceinline const float& operator [](size_t index) const { assert(index < N); return f[index]; }
__forceinline float& operator [](size_t index) { assert(index < N); return f[index]; }
};
-
+
template<int N>
struct vdouble_impl
{
@@ -31,7 +31,7 @@ namespace embree
__forceinline const int& operator [](size_t index) const { assert(index < N); return i[index]; }
__forceinline int& operator [](size_t index) { assert(index < N); return i[index]; }
};
-
+
template<int N>
struct vuint_impl
{