MSVC: fix warnings and build failure

This commit is contained in:
wmayer
2023-09-23 19:03:53 +02:00
committed by wwmayer
parent 15b11bc360
commit 5a81fcd7a5
6 changed files with 30 additions and 13 deletions

View File

@@ -21,8 +21,10 @@
***************************************************************************/
#include "ViewProviderPython.h"
// clang-format off
#include "PreCompiled.h"
#include "ViewProviderPython.h"
// clang-format on
namespace Gui
{

View File

@@ -20,6 +20,10 @@
* *
***************************************************************************/
#ifdef _MSC_VER
#pragma warning(disable : 4251)
#endif
#include <algorithm>
#define DEBUG_DERIVS 0
#if DEBUG_DERIVS

View File

@@ -20,6 +20,10 @@
* *
***************************************************************************/
#ifdef _MSC_VER
#pragma warning(disable : 4251)
#endif
#include <iostream>
#include <iterator>