From 939ca92ac897987adc5ba8454d2a2c10e7d7365c Mon Sep 17 00:00:00 2001 From: "Stephan T. Lavavej" Date: Fri, 22 Nov 2024 16:56:07 -0800 Subject: Core/Misc: Remove non-portable hack of including `<__msvc_chrono.hpp>` - will break in future MSVC release (#30460) (cherry picked from commit 96956b0e5b74884ff8f7bede5c8c11adbb5ee873) --- src/common/Utilities/Duration.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src') diff --git a/src/common/Utilities/Duration.h b/src/common/Utilities/Duration.h index b4c3f17cb3e..f506467abda 100644 --- a/src/common/Utilities/Duration.h +++ b/src/common/Utilities/Duration.h @@ -18,12 +18,7 @@ #ifndef _DURATION_H_ #define _DURATION_H_ -// HACKS TERRITORY -#if __has_include(<__msvc_chrono.hpp>) -#include <__msvc_chrono.hpp> // skip all the formatting/istream/locale/mutex bloat -#else #include -#endif /// Milliseconds shorthand typedef. typedef std::chrono::milliseconds Milliseconds; -- cgit v1.2.3