mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-08 05:33:36 +00:00
gl_engine: fix a compiler warning.
../src/renderer/gl_engine/tvgGlRenderer.cpp:450:24: warning: comparison of integer expressions of different signedness: ‘int’ and ‘uint32_t’ {aka ‘unsigned int’} [-Wsign-compare] 450 | for (auto i = 0; i < mComposePool.count; i++) { |
This commit is contained in:
parent
9ef2288ae7
commit
2ae8613a25
1 changed files with 1 additions and 1 deletions
|
@ -447,7 +447,7 @@ GlRenderer::GlRenderer() :mViewport() ,mGpuBuffer(new GlStageBuffer), mPrograms(
|
|||
|
||||
GlRenderer::~GlRenderer()
|
||||
{
|
||||
for (auto i = 0; i < mComposePool.count; i++) {
|
||||
for (uint32_t i = 0; i < mComposePool.count; i++) {
|
||||
if (mComposePool[i]) delete mComposePool[i];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue