From 1d76cc23291b1e2fa4f23ca4577692cca7745be8 Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Tue, 27 Apr 2021 10:33:30 +0200 Subject: [PATCH] Make the pragma message NOLINT --- plugins/vst/SfizzVstController.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/vst/SfizzVstController.cpp b/plugins/vst/SfizzVstController.cpp index cdd9f0b3..dc250162 100644 --- a/plugins/vst/SfizzVstController.cpp +++ b/plugins/vst/SfizzVstController.cpp @@ -324,7 +324,7 @@ tresult SfizzVstControllerNoUi::notify(Vst::IMessage* message) pos += sizeof(uint32); float value = *reinterpret_cast(pos); pos += sizeof(float); - #pragma message("setParam() on non-UI thread is dangerous on Reaper, make it deferred instead") + #pragma message("setParam() on non-UI thread is dangerous on Reaper, make it deferred instead") //NOLINT setParam(pid, value); } }