From 03de737f0d18526b99b59a1810c7e290b66f4be2 Mon Sep 17 00:00:00 2001 From: Tim Foley Date: Thu, 6 Jul 2017 11:11:01 -0700 Subject: Fix many warnings-as-errors issues. The code should now compile cleanly with warnings as errors for VS2015 with `W3`. Most of the changes had to do with propagating a real pointer-sized integer type through code that had been using `int`. --- tools/render-test/main.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tools/render-test/main.cpp') diff --git a/tools/render-test/main.cpp b/tools/render-test/main.cpp index aeff565c6..f2688d275 100644 --- a/tools/render-test/main.cpp +++ b/tools/render-test/main.cpp @@ -15,6 +15,10 @@ #undef WIN32_LEAN_AND_MEAN #undef NOMINMAX +#ifdef _MSC_VER +#pragma warning(disable: 4996) +#endif + namespace renderer_test { // -- cgit v1.2.3