diff options
author | Edward O'Callaghan <[email protected]> | 2016-12-07 10:30:48 +1100 |
---|---|---|
committer | Edward O'Callaghan <[email protected]> | 2016-12-07 22:32:38 +1100 |
commit | a77426fd922259bc37b762fa22b42b91d3ce494a (patch) | |
tree | 43837e716eec22e379cd618eb6ff210e4d854c0e /src/amd/vulkan | |
parent | e9f17e9fb06a4389588f47be8c766b07e8d8b89f (diff) |
vulkan: use STATIC_ASSERT instead of static_assert
Following the spirit of commit 23d1799f, fixes compilation
warnings on Android build due to lack of C11 features.
Signed-off-by: Edward O'Callaghan <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/amd/vulkan')
-rw-r--r-- | src/amd/vulkan/radv_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_private.h b/src/amd/vulkan/radv_private.h index def0af2069d..4b720175c7b 100644 --- a/src/amd/vulkan/radv_private.h +++ b/src/amd/vulkan/radv_private.h @@ -173,7 +173,7 @@ radv_clear_mask(uint32_t *inout_mask, uint32_t clear_mask) __dword &= ~(1 << (b))) #define typed_memcpy(dest, src, count) ({ \ - static_assert(sizeof(*src) == sizeof(*dest), ""); \ + STATIC_ASSERT(sizeof(*src) == sizeof(*dest)); \ memcpy((dest), (src), (count) * sizeof(*(src))); \ }) |