Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/cycles/util/util_types_int2_impl.h')
-rw-r--r--intern/cycles/util/util_types_int2_impl.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/intern/cycles/util/util_types_int2_impl.h b/intern/cycles/util/util_types_int2_impl.h
index c7d3942e723..ce95d4f14e5 100644
--- a/intern/cycles/util/util_types_int2_impl.h
+++ b/intern/cycles/util/util_types_int2_impl.h
@@ -26,25 +26,25 @@ CCL_NAMESPACE_BEGIN
#ifndef __KERNEL_GPU__
int int2::operator[](int i) const
{
- util_assert(i >= 0);
- util_assert(i < 2);
- return *(&x + i);
+ util_assert(i >= 0);
+ util_assert(i < 2);
+ return *(&x + i);
}
-int& int2::operator[](int i)
+int &int2::operator[](int i)
{
- util_assert(i >= 0);
- util_assert(i < 2);
- return *(&x + i);
+ util_assert(i >= 0);
+ util_assert(i < 2);
+ return *(&x + i);
}
ccl_device_inline int2 make_int2(int x, int y)
{
- int2 a = {x, y};
- return a;
+ int2 a = {x, y};
+ return a;
}
-#endif /* __KERNEL_GPU__ */
+#endif /* __KERNEL_GPU__ */
CCL_NAMESPACE_END
-#endif /* __UTIL_TYPES_INT2_IMPL_H__ */
+#endif /* __UTIL_TYPES_INT2_IMPL_H__ */