Skip to content

Commit 35e9913

Browse files
committedSep 1, 2023
fix qt6 build warning
1 parent da0b627 commit 35e9913

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/3d/qgsraycastingutils_p.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ namespace QgsRayCastingUtils
391391

392392
for ( int i = 0; i < vertexCount; i += 3 )
393393
{
394-
int v0index, v1index, v2index;
394+
int v0index = 0, v1index = 0, v2index = 0;
395395
if ( !indexAttr )
396396
{
397397
v0index = i;

0 commit comments

Comments
 (0)
Please sign in to comment.