Skip to content

Commit

Permalink
qgsmeshrenderer3daveragingwidget.cpp: fix false-positive warning abou…
Browse files Browse the repository at this point in the history
…t potentially unused variable
  • Loading branch information
rouault authored and nyalldawson committed Jun 15, 2020
1 parent 6e81d1f commit c77ba5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/mesh/qgsmeshrenderer3daveragingwidget.cpp
Expand Up @@ -209,7 +209,7 @@ void QgsMeshRenderer3dAveragingWidget::syncToLayer( )
if ( method )
{
const QgsMesh3dAveragingMethod::Method type = method->method();
int pageIndex;
int pageIndex = 0;

switch ( type )
{
Expand Down

0 comments on commit c77ba5e

Please sign in to comment.