From 2e8cfc13827fbc7e3f2475bbc83694c2e1514107 Mon Sep 17 00:00:00 2001 From: Javier <25750030+SystemPanic@users.noreply.github.com> Date: Sat, 3 May 2025 19:09:33 -0500 Subject: [PATCH] More Windows fixes Signed-off-by: Javier <25750030+SystemPanic@users.noreply.github.com> --- include/cutlass/platform/platform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/cutlass/platform/platform.h b/include/cutlass/platform/platform.h index 939451a2d..af0149cd9 100644 --- a/include/cutlass/platform/platform.h +++ b/include/cutlass/platform/platform.h @@ -523,7 +523,7 @@ using std::is_trivially_copyable; #endif -#if (201703L <=__cplusplus) +#if defined(_MSC_VER) || (201703L <=__cplusplus) /// std::is_unsigned_v using CUTLASS_STL_NAMESPACE::is_integral_v;