From 6e899b894d17383cdb66071f3cff4212e4525b70 Mon Sep 17 00:00:00 2001 From: baldurk Date: Thu, 11 Jun 2020 17:37:16 +0100 Subject: [PATCH] Disable warning in tinyexr with latest VS2019 compiler --- renderdoc/3rdparty/tinyexr/tinyexr.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/renderdoc/3rdparty/tinyexr/tinyexr.cpp b/renderdoc/3rdparty/tinyexr/tinyexr.cpp index 597634e5f..a5b327409 100644 --- a/renderdoc/3rdparty/tinyexr/tinyexr.cpp +++ b/renderdoc/3rdparty/tinyexr/tinyexr.cpp @@ -3,5 +3,9 @@ #include #include "miniz/miniz.h" +#pragma warning(disable : 5208) // unnamed class used in typedef name cannot declare members + // other than non-static data members, member enumerations, or + // member classes + #define TINYEXR_IMPLEMENTATION #include "tinyexr.h"