Skip to content

Commit

Permalink
Restore alternative silencer method
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Nov 28, 2022
1 parent 14bf89c commit 16e572d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/core/actions/qgsaction.cpp
Expand Up @@ -310,7 +310,9 @@ void QgsAction::run( const QgsExpressionContext &expressionContext ) const
{
// The QgsRunProcess instance created by this static function
// deletes itself when no longer needed.
QgsRunProcess::create( expandedAction, mCaptureOutput ); // NOLINT
#ifndef __clang_analyzer__
QgsRunProcess::create( expandedAction, mCaptureOutput );
#endif
}
}

Expand Down

0 comments on commit 16e572d

Please sign in to comment.