From 4dc2cd8442d6996fd99cc9713a3375c866448478 Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Tue, 25 Jul 2017 08:54:29 +0200 Subject: [PATCH] Profiler: fix invalid using statement. --- code/Profiler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/Profiler.h b/code/Profiler.h index 00cb5a9..1c9ca60 100644 --- a/code/Profiler.h +++ b/code/Profiler.h @@ -87,7 +87,7 @@ public: } private: - using RegionMap = std::map>; + typedef std::map> RegionMap; RegionMap regions; }; -- 2.7.4