From 8cd6e896cd517b59aef86a33bc3c14c4da04d427 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Sun, 12 Jan 2020 21:21:54 +0100 Subject: [PATCH] test: fix clang warning caused by 'static_assert' polyfill --- test/shared/test-util.h | 1 + 1 file changed, 1 insertion(+) diff --git a/test/shared/test-util.h b/test/shared/test-util.h index 0d24e15..4acb5c5 100644 --- a/test/shared/test-util.h +++ b/test/shared/test-util.h @@ -7,6 +7,7 @@ #pragma clang diagnostic ignored "-Wbad-function-cast" #pragma clang diagnostic ignored "-Wcast-qual" #pragma clang diagnostic ignored "-Wformat-non-iso" +#pragma clang diagnostic ignored "-Wkeyword-macro" #endif #ifdef _MSC_VER