diff options
author | fanquake <fanquake@gmail.com> | 2022-06-20 11:43:21 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-06-20 12:22:05 +0100 |
commit | 58a9601dffa6d9b3b881a476169458787d382919 (patch) | |
tree | ad17aa0f9a79d38db266d618827173f795024012 /src/util | |
parent | a09033e22c4f072c86a1885dd476f3059e5416d1 (diff) |
build: globally define NOMINMAX
Define (and document) `NOMINMAX` once, rather than across multiple
source files.
Defining this prevents the definition of min/max macros when using
mingw-w64, which may conflict with unprefixed std::min/max usage. While
that might not be the case for us, we'd always prefer to use the standard
library in any case.
For example:
https://github.com/mingw-w64/mingw-w64/blob/73cadc06c62c6af5faf76f64ef08e684b48de48c/mingw-w64-headers/include/ntdef.h#L289-L300
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/system.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/util/system.cpp b/src/util/system.cpp index 6e2638a5d6..1ae82fbc96 100644 --- a/src/util/system.cpp +++ b/src/util/system.cpp @@ -62,9 +62,6 @@ #pragma warning(disable:4717) #endif -#ifndef NOMINMAX -#define NOMINMAX -#endif #include <codecvt> #include <io.h> /* for _commit */ |