refactor: correct variable naming

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2023-11-30 10:36:43 +00:00
committed by Compute-Runtime-Automation
parent f8bb71e1ba
commit c3ac7b78bd
78 changed files with 344 additions and 344 deletions

View File

@@ -187,8 +187,8 @@ struct ArgTypeTraits {
};
namespace {
inline constexpr auto ArgTypeMetadataSize = sizeof(ArgTypeTraits);
static_assert(ArgTypeMetadataSize <= 4, "Keep it small");
inline constexpr auto argTypeMetadataSize = sizeof(ArgTypeTraits);
static_assert(argTypeMetadataSize <= 4, "Keep it small");
} // namespace
struct ArgTypeMetadataExtended {