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:
authorBrecht Van Lommel <brecht@blender.org>2021-11-17 20:46:21 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-11-17 21:56:18 +0300
commitfa7a6d67a8084d6c26084d811ec959595aa92fdf (patch)
treeb957b4c858cf1351c7b5c5d71b1b0ad62208f901 /intern/cycles/util/types_float3.h
parentd9bc8f189cc36cc55082cfd7ad8845e96eb062e3 (diff)
Fix Cycles CUDA/HIP compiler error after recent changes
Diffstat (limited to 'intern/cycles/util/types_float3.h')
-rw-r--r--intern/cycles/util/types_float3.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/util/types_float3.h b/intern/cycles/util/types_float3.h
index fc0f35fa87f..cafcfebf526 100644
--- a/intern/cycles/util/types_float3.h
+++ b/intern/cycles/util/types_float3.h
@@ -88,7 +88,7 @@ struct packed_float3 {
};
#endif
-static_assert(sizeof(packed_float3) == 12);
+static_assert(sizeof(packed_float3) == 12, "packed_float3 expected to be exactly 12 bytes");
CCL_NAMESPACE_END