Skip to content

Commit

Permalink
warning C4267: 'argument': conversion from 'size_t' to 'unsigned long…
Browse files Browse the repository at this point in the history
…', possible loss of data
  • Loading branch information
eugenegff committed Nov 27, 2024
1 parent 6d574ab commit ffd272b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RenderSystems/Vulkan/src/Vao/OgreVulkanVaoManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ namespace Ogre
if( itor != params->end() )
{
mDelayedBlocksFlushThreshold = static_cast<size_t>(
StringConverter::parseUnsignedLong( itor->second, mDelayedBlocksFlushThreshold ) );
StringConverter::parseSizeT( itor->second, mDelayedBlocksFlushThreshold ) );
}
}
}
Expand Down

0 comments on commit ffd272b

Please sign in to comment.