From f3edf94e7ee02b802cdc1f052e2bb5c8edd0e84e Mon Sep 17 00:00:00 2001 From: khizmax Date: Wed, 3 Aug 2016 12:24:47 +0300 Subject: [PATCH] Fixed gcc incompatibility --- cds/container/impl/iterable_kvlist.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cds/container/impl/iterable_kvlist.h b/cds/container/impl/iterable_kvlist.h index a483c57f..19d2615a 100644 --- a/cds/container/impl/iterable_kvlist.h +++ b/cds/container/impl/iterable_kvlist.h @@ -151,7 +151,7 @@ namespace cds { namespace container { typedef typename maker::cxx_data_allocator cxx_data_allocator; template - using less_wrapper = typename maker::less_wrapper< Less >; + using less_wrapper = typename maker::template less_wrapper< Less >; template using iterator_type = typename base_class::template iterator_type; -- 2.34.1