From 6c8d4c4ec6e09ff2b147f7562dcb1352245bc108 Mon Sep 17 00:00:00 2001
From: Max Lyon <max.lyon@autodesk.com>
Date: Tue, 19 Jul 2022 23:04:21 +0200
Subject: [PATCH] replace remove_reference_t with remove_reference::type

---
 Debug/DebTime.hh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Debug/DebTime.hh b/Debug/DebTime.hh
index d8b21db..4fc343d 100644
--- a/Debug/DebTime.hh
+++ b/Debug/DebTime.hh
@@ -16,7 +16,7 @@ namespace Debug {
 template <typename DivisorT = int>
 class StopWatchSessionT
 {
-  static constexpr std::remove_reference_t<DivisorT> ONE = 1;
+  static constexpr typename std::remove_reference<DivisorT>::type ONE = 1;
 
 public:
   StopWatchSessionT(Enter& _deb, const char* _sssn_name = nullptr,
-- 
GitLab