From c19a8736b81d3ce2c2004e3af3be6797a20fc743 Mon Sep 17 00:00:00 2001 From: wmayer Date: Wed, 11 Oct 2023 11:17:18 +0200 Subject: [PATCH] Core: fix compiler warning due to boost --- src/App/private/DocumentP.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/App/private/DocumentP.h b/src/App/private/DocumentP.h index a85d90af50..d6c2ac107e 100644 --- a/src/App/private/DocumentP.h +++ b/src/App/private/DocumentP.h @@ -23,6 +23,10 @@ #ifndef APP_DOCUMENTP_H #define APP_DOCUMENTP_H +#ifdef _MSC_VER +#pragma warning( disable : 4834 ) +#endif + #include #include #include