Follow-up, get rid of even more NOMINMAX warnings

This commit is contained in:
tamasmeszaros 2023-08-16 14:15:38 +02:00
parent bd31722bac
commit c613669718
3 changed files with 7 additions and 0 deletions

View File

@ -16,7 +16,9 @@
// The standard Windows includes.
#define WIN32_LEAN_AND_MEAN
#ifndef NOMINMAX
#define NOMINMAX
#endif
#include <Windows.h>
#include <shellapi.h>

View File

@ -7,7 +7,9 @@
#ifdef _MSC_VER
#define WIN32_LEAN_AND_MEAN
#ifndef NOMINMAX
#define NOMINMAX
#endif
#include <Windows.h>
#endif /* _MSC_VER */

View File

@ -1,4 +1,7 @@
#ifndef NOMINMAX
#define NOMINMAX
#endif
#include <catch2/catch.hpp>
#include <numeric>