ReactOS 0.4.17-dev-684-ga6524ef
helpers.h
Go to the documentation of this file.
1#pragma once
2
4
5#define UACPI_BUILD_BUG_ON_WITH_MSG(expr, msg) UACPI_STATIC_ASSERT(!(expr), msg)
6
7#define UACPI_BUILD_BUG_ON(expr) \
8 UACPI_BUILD_BUG_ON_WITH_MSG(expr, "BUILD BUG: " #expr " evaluated to true")
9
10#define UACPI_EXPECT_SIZEOF(type, size) \
11 UACPI_BUILD_BUG_ON_WITH_MSG(sizeof(type) != size, \
12 "BUILD BUG: invalid type size")