Core/Misc: MSVC warning fixes

This commit is contained in:
Aokromes
2016-07-19 12:40:58 +02:00
parent 4e7dabc09d
commit 9c1b965136
12 changed files with 43 additions and 34 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;