From 1698b2895b004027ab811ced0cab86d35d08af7e Mon Sep 17 00:00:00 2001 From: tt2468 Date: Fri, 22 Jul 2022 07:00:05 -0700 Subject: [PATCH] base: Fix MSVC warning about misdeclared Config struct --- src/obs-websocket.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/obs-websocket.h b/src/obs-websocket.h index 500d51e4..c8ca95b4 100644 --- a/src/obs-websocket.h +++ b/src/obs-websocket.h @@ -26,7 +26,7 @@ with this program. If not, see #include "utils/Obs.h" #include "plugin-macros.generated.h" -class Config; +struct Config; typedef std::shared_ptr ConfigPtr; class EventHandler;