X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2Funit%2Fintrusive-set%2Ftest_intrusive_split_lazy_rcu.h;h=73e5416273557b3ddd1fa42195bcc0c83dad08c9;hb=6924946ceeaae28bc227fe7c9d8e939963bb9d69;hp=7d7176aaba13044f745682898a63333fe4fffc3f;hpb=49c0aa6b50ba412f206f06419adf1bf2213ae373;p=libcds.git diff --git a/test/unit/intrusive-set/test_intrusive_split_lazy_rcu.h b/test/unit/intrusive-set/test_intrusive_split_lazy_rcu.h index 7d7176aa..73e54162 100644 --- a/test/unit/intrusive-set/test_intrusive_split_lazy_rcu.h +++ b/test/unit/intrusive-set/test_intrusive_split_lazy_rcu.h @@ -69,14 +69,14 @@ TYPED_TEST_P( IntrusiveSplitLazySet, base_cmp ) typedef typename TestFixture::rcu_type rcu_type; typedef typename TestFixture::base_item_type base_item_type; typedef typename TestFixture::mock_disposer mock_disposer; - typedef typename TestFixture::template cmp cmp; + typedef typename TestFixture::template cmp item_cmp; typedef typename TestFixture::hash_int hash_int; typedef ci::LazyList< rcu_type , base_item_type , typename ci::lazy_list::make_traits< ci::opt::hook< ci::lazy_list::base_hook< ci::opt::gc< rcu_type > > > - , ci::opt::compare< cmp > + , ci::opt::compare< item_cmp > , ci::opt::disposer< mock_disposer > >::type > bucket_type; @@ -96,14 +96,14 @@ TYPED_TEST_P( IntrusiveSplitLazySet, base_less ) typedef typename TestFixture::rcu_type rcu_type; typedef typename TestFixture::base_item_type base_item_type; typedef typename TestFixture::mock_disposer mock_disposer; - typedef typename TestFixture::template less less; + typedef typename TestFixture::template less item_less; typedef typename TestFixture::hash_int hash_int; typedef ci::LazyList< rcu_type , base_item_type , typename ci::lazy_list::make_traits< ci::opt::hook< ci::lazy_list::base_hook< ci::opt::gc< rcu_type >>> - , ci::opt::less< less > + , ci::opt::less< item_less > , ci::opt::disposer< mock_disposer > >::type > bucket_type; @@ -270,7 +270,7 @@ TYPED_TEST_P( IntrusiveSplitLazySet, member_cmp ) typedef typename TestFixture::rcu_type rcu_type; typedef typename TestFixture::member_item_type member_item_type; typedef typename TestFixture::mock_disposer mock_disposer; - typedef typename TestFixture::template cmp cmp; + typedef typename TestFixture::template cmp item_cmp; typedef typename TestFixture::hash_int hash_int; typedef ci::LazyList< rcu_type @@ -280,7 +280,7 @@ TYPED_TEST_P( IntrusiveSplitLazySet, member_cmp ) offsetof( member_item_type, hMember ), ci::opt::gc >> - , ci::opt::compare< cmp > + , ci::opt::compare< item_cmp > , ci::opt::disposer< mock_disposer > >::type > bucket_type; @@ -300,7 +300,7 @@ TYPED_TEST_P( IntrusiveSplitLazySet, member_less ) typedef typename TestFixture::rcu_type rcu_type; typedef typename TestFixture::member_item_type member_item_type; typedef typename TestFixture::mock_disposer mock_disposer; - typedef typename TestFixture::template less less; + typedef typename TestFixture::template less item_less; typedef typename TestFixture::hash_int hash_int; typedef ci::LazyList< rcu_type @@ -310,7 +310,7 @@ TYPED_TEST_P( IntrusiveSplitLazySet, member_less ) offsetof( member_item_type, hMember ), ci::opt::gc > > - , ci::opt::less< less > + , ci::opt::less< item_less > , ci::opt::disposer< mock_disposer > >::type > bucket_type;