Fixed GCC incompatibility
authorkhizmax <libcds.dev@gmail.com>
Sat, 19 Mar 2016 07:44:03 +0000 (10:44 +0300)
committerkhizmax <libcds.dev@gmail.com>
Sat, 19 Mar 2016 07:44:03 +0000 (10:44 +0300)
test/unit/set/test_split_lazy_rcu.h
test/unit/set/test_split_michael_rcu.h

index 44fec2b2020293ce541f050847a51287d018d28f..9b3ebf214b8d01ba3dcd41b46e98b9e9642e4552 100644 (file)
@@ -258,7 +258,7 @@ TYPED_TEST_P( SplitListLazySet, static_bucket_table )
     typedef cc::SplitListSet< rcu_type, int_item, set_traits > set_type;
 
     set_type s( TestFixture::kSize, 4 );
-    test( s );
+    this->test( s );
 }
 
 
index 4b2ac548a86fa11f8a8ffeb47254c68a2a991677..90e46b6dcc10776a8ecbfa2114edd89fc7f7f624 100644 (file)
@@ -230,7 +230,7 @@ TYPED_TEST_P( SplitListMichaelSet, static_bucket_table )
     typedef cc::SplitListSet< rcu_type, int_item, set_traits > set_type;
 
     set_type s( TestFixture::kSize, 4 );
-    test( s );
+    this->test( s );
 }