From dc13969e484ed9fa6834b1aba85ba00f65bf8a11 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 5 May 2014 02:19:08 +1000 Subject: Style cleanup: indentation, braces --- intern/cycles/util/util_hash.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'intern/cycles/util/util_hash.h') diff --git a/intern/cycles/util/util_hash.h b/intern/cycles/util/util_hash.h index ded25c92b90..edd2448efa4 100644 --- a/intern/cycles/util/util_hash.h +++ b/intern/cycles/util/util_hash.h @@ -23,7 +23,7 @@ CCL_NAMESPACE_BEGIN static inline uint hash_int_2d(uint kx, uint ky) { - #define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k)))) +#define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k)))) uint a, b, c; @@ -41,7 +41,7 @@ static inline uint hash_int_2d(uint kx, uint ky) return c; - #undef rot +#undef rot } static inline uint hash_int(uint k) -- cgit v1.2.3