mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 04:44:11 +02:00
Fix last of the windows warnings
This commit is contained in:
parent
7472673dae
commit
eb8fc2e156
1 changed files with 7 additions and 0 deletions
|
@ -32,11 +32,18 @@
|
|||
#include <PerfStat.h>
|
||||
#include <render/Scene.h>
|
||||
|
||||
#ifdef _WIN32
|
||||
#pragma warning(push)
|
||||
#pragma warning( disable : 4267 )
|
||||
#endif
|
||||
#include <PolyVoxCore/CubicSurfaceExtractorWithNormals.h>
|
||||
#include <PolyVoxCore/MarchingCubesSurfaceExtractor.h>
|
||||
#include <PolyVoxCore/SurfaceMesh.h>
|
||||
#include <PolyVoxCore/SimpleVolume.h>
|
||||
#include <PolyVoxCore/Material.h>
|
||||
#ifdef _WIN32
|
||||
#pragma warning(pop)
|
||||
#endif
|
||||
|
||||
#include "model/Geometry.h"
|
||||
#include "EntityTreeRenderer.h"
|
||||
|
|
Loading…
Reference in a new issue