2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-09-01 06:27:26 +00:00

Merge pull request #200 from Laupetin/fix/release-build-warnings

fix: warnings preventing release build for MSVC
This commit is contained in:
Jan
2024-05-19 14:57:13 +02:00
committed by GitHub
3 changed files with 9 additions and 0 deletions

View File

@@ -5,7 +5,10 @@
#include "Game/IW4/TechsetConstantsIW4.h"
#include "Utils/ClassUtils.h"
#pragma warning(push, 0)
#include <Eigen>
#pragma warning(pop)
#include <iomanip>
#include <nlohmann/json.hpp>
#include <sstream>

View File

@@ -1,6 +1,9 @@
#include "XModelExportWriter.h"
#pragma warning(push, 0)
#include <Eigen>
#pragma warning(pop)
#include <chrono>
#include <iomanip>
#include <iostream>

View File

@@ -4,7 +4,10 @@
#include "XModel/Gltf/GltfConstants.h"
#include "XModel/Gltf/JsonGltf.h"
#pragma warning(push, 0)
#include <Eigen>
#pragma warning(pop)
#include <format>
using namespace gltf;