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 6aaf380
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RenderSystems/Vulkan/src/Vao/OgreVulkanVaoManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ namespace Ogre
params->find( "VaoManager::mDelayedBlocksFlushThreshold" );
if( itor != params->end() )
{
mDelayedBlocksFlushThreshold = static_cast<size_t>(
StringConverter::parseUnsignedLong( itor->second, mDelayedBlocksFlushThreshold ) );
mDelayedBlocksFlushThreshold =
StringConverter::parseSizeT( itor->second, mDelayedBlocksFlushThreshold );
}
}
}
Expand Down

0 comments on commit 6aaf380

Please sign in to comment.