Coding style fix

This commit is contained in:
Graham Wihlidal 2017-01-05 21:02:57 +01:00
parent 9b1ee8f10a
commit bcfe2be332

View File

@ -217,7 +217,7 @@ static void print_resources(const Compiler &compiler, const char *tag, const vec
uint32_t block_size = 0;
if (is_sized_block)
block_size = (uint32_t)compiler.get_declared_struct_size(compiler.get_type(res.base_type_id));
block_size = uint32_t(compiler.get_declared_struct_size(compiler.get_type(res.base_type_id)));
string array;
for (auto arr : type.array)