From b6cb7583579b0c7ea8208332cb43ca0907836204 Mon Sep 17 00:00:00 2001 From: John Emmas Date: Thu, 17 Oct 2024 12:07:05 +0100 Subject: [PATCH] Another minor tweak to fix a build issue with MSVC/c++17 Fixes a conflict between 'std::byte' (new in c++17) and earlier declarations / typedef's that defined 'byte' --- libs/fst/vst3-scanner.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/fst/vst3-scanner.cc b/libs/fst/vst3-scanner.cc index 34e8faa3a6..017cc3a9c4 100644 --- a/libs/fst/vst3-scanner.cc +++ b/libs/fst/vst3-scanner.cc @@ -23,6 +23,7 @@ #include #ifdef PLATFORM_WINDOWS +#include #include #else #include