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
path: root/intern
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-09-21 04:34:39 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-09-21 04:34:39 +0300
commit3fcedae8c83584607c1c9d7488a6ba2c623fde0b (patch)
treec86549f5697814ff84162566dbeb91b21e9a2e75 /intern
parent3589701f6d48e4de786615c2b0d249f4150d1e4b (diff)
Cleanup: extra semicolon, comma warnings
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/util/util_hash.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/intern/cycles/util/util_hash.h b/intern/cycles/util/util_hash.h
index 53140e40fc9..ca48758efcd 100644
--- a/intern/cycles/util/util_hash.h
+++ b/intern/cycles/util/util_hash.h
@@ -47,7 +47,8 @@ CCL_NAMESPACE_BEGIN
c -= b; \
c ^= rot(b, 4); \
b += a; \
- }
+ } \
+ ((void)0)
#define final(a, b, c) \
{ \
@@ -65,7 +66,8 @@ CCL_NAMESPACE_BEGIN
b -= rot(a, 14); \
c ^= b; \
c -= rot(b, 24); \
- }
+ } \
+ ((void)0)
ccl_device_inline uint hash_uint(uint kx)
{