From ea8046908b328d5b5db3118395e43cfa8455e31d Mon Sep 17 00:00:00 2001 From: Timo Kaluza Date: Wed, 25 Sep 2024 10:44:50 +0200 Subject: [PATCH] removing unused variables --- src/wrapasvst3.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/wrapasvst3.cpp b/src/wrapasvst3.cpp index 63cfb766..c2bbd7db 100644 --- a/src/wrapasvst3.cpp +++ b/src/wrapasvst3.cpp @@ -43,10 +43,8 @@ struct ClapHostExtensions #endif void utf8_to_utf16l(const char* utf8string, uint16_t* target, size_t targetsize) -{ - bool result = true; +{ uint32_t codepoint = 0; - int state = 1; size_t targetpos = 0; auto src = reinterpret_cast(utf8string);