vulkan/util: assume c11

Reviewed-by: Jesse Natalie <jenatali@microsoft.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16908>
This commit is contained in:
Erik Faye-Lund 2022-06-07 16:34:16 +02:00 committed by Marge Bot
parent ec9d7872ac
commit 2c43044507
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@
#include <stdlib.h>
#if __STDC_VERSION__ >= 201112L && !defined(_MSC_VER)
#ifndef _MSC_VER
#include <stddef.h>
#define MAX_ALIGN alignof(max_align_t)
#else