From 5ef33e5ba05721c917894fbe41f02394e719d1ce Mon Sep 17 00:00:00 2001 From: Jeff Preshing Date: Tue, 9 Feb 2016 14:21:01 -0500 Subject: [PATCH] Fixes for clang without -std=c++11 --- junction/ConcurrentMap_Grampa.h | 2 +- junction/ConcurrentMap_LeapFrog.h | 2 +- junction/ConcurrentMap_Linear.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/junction/ConcurrentMap_Grampa.h b/junction/ConcurrentMap_Grampa.h index 5f03c8b..b0d6cec 100644 --- a/junction/ConcurrentMap_Grampa.h +++ b/junction/ConcurrentMap_Grampa.h @@ -23,7 +23,7 @@ namespace junction { TURF_TRACE_DECLARE(ConcurrentMap_Grampa, 27) -template , class VT = DefaultValueTraits> +template , class VT = DefaultValueTraits > class ConcurrentMap_Grampa { public: typedef K Key; diff --git a/junction/ConcurrentMap_LeapFrog.h b/junction/ConcurrentMap_LeapFrog.h index c18af4a..0a51ad9 100644 --- a/junction/ConcurrentMap_LeapFrog.h +++ b/junction/ConcurrentMap_LeapFrog.h @@ -23,7 +23,7 @@ namespace junction { TURF_TRACE_DECLARE(ConcurrentMap_LeapFrog, 17) -template , class VT = DefaultValueTraits> +template , class VT = DefaultValueTraits > class ConcurrentMap_LeapFrog { public: typedef K Key; diff --git a/junction/ConcurrentMap_Linear.h b/junction/ConcurrentMap_Linear.h index 6d0fa98..32b2a37 100644 --- a/junction/ConcurrentMap_Linear.h +++ b/junction/ConcurrentMap_Linear.h @@ -23,7 +23,7 @@ namespace junction { TURF_TRACE_DECLARE(ConcurrentMap_Linear, 18) -template , class VT = DefaultValueTraits> +template , class VT = DefaultValueTraits > class ConcurrentMap_Linear { public: typedef K Key; -- 2.34.1