From: Jeff Preshing Date: Tue, 9 Feb 2016 19:21:01 +0000 (-0500) Subject: Fixes for clang without -std=c++11 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5ef33e5ba05721c917894fbe41f02394e719d1ce;p=junction.git Fixes for clang without -std=c++11 --- 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;