From c18dffc2650260b541568fe07f7eed4719458906 Mon Sep 17 00:00:00 2001 From: Chad Austin Date: Fri, 12 May 2023 19:41:24 -0700 Subject: [PATCH] move the STRICT define into the build system on Windows Summary: Win32 provides a few defines that make safely using the Windows API easier. STRICT is one of them. Move it into the build system alongside NOMINMAX and WIN32_LEAN_AND_MEAN. Reviewed By: xavierd Differential Revision: D45823992 fbshipit-source-id: c6849f039198072faaef88c1792a51c60b1c4b50 --- eden/common/utils/ProcessName.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/eden/common/utils/ProcessName.cpp b/eden/common/utils/ProcessName.cpp index f580b17c..f8f4000a 100644 --- a/eden/common/utils/ProcessName.cpp +++ b/eden/common/utils/ProcessName.cpp @@ -9,14 +9,8 @@ // otherwise we get macro definition conflicts through // transitive includes. #ifdef _WIN32 - -#ifndef STRICT -#define STRICT -#endif - #include // @manual #include // @manual - #endif #include "eden/common/utils/ProcessName.h"