refactor: adjust code to compile with c++20

Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
This commit is contained in:
Bartosz Dunajski
2024-11-28 15:49:15 +00:00
committed by Compute-Runtime-Automation
parent a9c0199dfe
commit 5e1fa75676
29 changed files with 55 additions and 43 deletions

View File

@@ -4827,7 +4827,7 @@ typedef struct tag_3DSTATE_BTD {
}
} _3DSTATE_BTD;
STATIC_ASSERT(24 == sizeof(_3DSTATE_BTD));
STATIC_ASSERT(std::is_pod<_3DSTATE_BTD>::value);
STATIC_ASSERT(NEO::TypeTraits::isPodV<_3DSTATE_BTD>);
typedef struct tagGRF {
union tagTheStructure {
@@ -7149,7 +7149,7 @@ struct L3_CONTROL {
}
};
STATIC_ASSERT(20 == sizeof(L3_CONTROL));
STATIC_ASSERT(std::is_pod<L3_CONTROL>::value);
STATIC_ASSERT(NEO::TypeTraits::isPodV<L3_CONTROL>);
typedef struct tagSTATE_SIP {
union tagTheStructure {