Add comments to suppress warning from clang-tidy (#3088)

Suppress style warnings for macro definition, name of these macros is
inconsistent with others (upper case).
This commit is contained in:
Huang Qi
2024-01-26 17:02:24 +08:00
committed by GitHub
parent ad46290770
commit 9fb5fcc709
4 changed files with 11 additions and 3 deletions

View File

@ -46,7 +46,7 @@ static union {
char b;
} __ue = { .a = 1 };
#define is_little_endian() (__ue.b == 1)
#define is_little_endian() (__ue.b == 1) /* NOLINT */
/**
* Implementation of wasm_application_execute_main()