Core/Misc: MSVC warning fixes

This commit is contained in:
Shauren
2016-04-05 00:15:56 +02:00
parent e3acb2ecc7
commit 70412e7e25
16 changed files with 31 additions and 31 deletions

View File

@@ -76,7 +76,7 @@ m_length(NULL)
std::size_t rowSize = 0;
for (uint32 i = 0; i < m_fieldCount; ++i)
{
size_t size = Field::SizeForType(&field[i]);
uint32 size = Field::SizeForType(&field[i]);
rowSize += size;
m_rBind[i].buffer_type = field[i].type;