Files
test2/intern/cycles/util/static_assert.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
625 B
C
Raw Normal View History

/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
*
* SPDX-License-Identifier: Apache-2.0 */
/* clang-format off */
/* #define static_assert triggers a bug in some clang-format versions, disable
* format for entire file to keep results consistent. */
#ifndef __UTIL_STATIC_ASSERT_H__
2019-10-12 09:46:44 +11:00
#define __UTIL_STATIC_ASSERT_H__
CCL_NAMESPACE_BEGIN
#if defined(CYCLES_CUBIN_CC)
# define static_assert(statement, message)
#endif
2019-10-12 09:46:44 +11:00
#define static_assert_align(st, align) \
static_assert((sizeof(st) % (align) == 0), "Structure must be strictly aligned") // NOLINT
CCL_NAMESPACE_END
#endif /* __UTIL_STATIC_ASSERT_H__ */