aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorStephan T. Lavavej <stl@nuwen.net>2024-11-22 16:56:07 -0800
committerOvahlord <dreadkiller@gmx.de>2024-11-24 15:14:42 +0100
commitdf12a8959c13eb48f0e11c19ac309c45735808c4 (patch)
treeceb77190ee2be20cbb651ab8c34e3e123bf20da7 /src/common
parentb91c6597b936fcc31550dbb00764821a28c9c11d (diff)
Core/Misc: Remove non-portable hack of including `<__msvc_chrono.hpp>` - will break in future MSVC release (#30460)
(cherry picked from commit 96956b0e5b74884ff8f7bede5c8c11adbb5ee873)
Diffstat (limited to 'src/common')
-rw-r--r--src/common/Utilities/Duration.h5
1 files changed, 0 insertions, 5 deletions
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 <chrono>
-#endif
/// Milliseconds shorthand typedef.
typedef std::chrono::milliseconds Milliseconds;