Adds check for sequential map test case
[libcds.git] / cds / opt / hash.h
index ec0e5aa76c0cbac4233edb9c02a6ea3e378440f9..2949b506bf15078e9bba897a8b441030a0980baf 100644 (file)
@@ -1,7 +1,7 @@
 /*
     This file is a part of libcds - Concurrent Data Structures library
 
-    (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2016
+    (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2017
 
     Source code repo: http://github.com/khizmax/libcds/
     Download: http://sourceforge.net/projects/libcds/files/
@@ -107,7 +107,7 @@ namespace cds { namespace opt {
                 : hash_tuple( t )
             {}
             hash_list( hash_tuple_type&& t)
-                : hash_tuple( std::forward<hash_tuple_type>(t) )
+                : hash_tuple( std::forward<hash_tuple_type>(t))
             {}
 
             template <size_t I, typename T>
@@ -172,7 +172,7 @@ namespace cds { namespace opt {
                 : m_wrappedList( t )
             {}
             hash_list_wrapper( hash_tuple_type&& t)
-                : m_wrappedList( std::forward<hash_tuple_type>(t) )
+                : m_wrappedList( std::forward<hash_tuple_type>(t))
             {}
 
             void operator()( size_t * dest, wrapped_type const& what ) const