Removed redundant spaces
[libcds.git] / test / unit / list / test_kv_iterable_list_hp.h
index e7a6b57f4cb3a22deef00915e662cf20f0520680..348475137592df73e41e2ccab136805b987293e5 100644 (file)
@@ -5,7 +5,7 @@
 
     Source code repo: http://github.com/khizmax/libcds/
     Download: http://sourceforge.net/projects/libcds/files/
-    
+
     Redistribution and use in source and binary forms, with or without
     modification, are permitted provided that the following conditions are met:
 
@@ -45,9 +45,6 @@ namespace cds_test {
             // Postcondition: list is empty
 
             static const size_t nSize = 20;
-            typedef typename List::key_type    list_key_type;
-            typedef typename List::mapped_type list_mapped_type;
-            typedef typename List::value_type  list_value_type;
             typedef typename List::guarded_ptr guarded_ptr;
 
             struct key_val {
@@ -62,7 +59,7 @@ namespace cds_test {
             }
             shuffle( arr, arr + nSize );
 
-            ASSERT_TRUE( l.empty() );
+            ASSERT_TRUE( l.empty());
             ASSERT_CONTAINER_SIZE( l, 0 );
 
             guarded_ptr gp;
@@ -90,16 +87,16 @@ namespace cds_test {
                 gp->second.val = gp->first.nKey * 10;
 
                 ++nCount;
-                ASSERT_FALSE( l.empty() );
+                ASSERT_FALSE( l.empty());
                 ASSERT_CONTAINER_SIZE( l, nCount );
             }
 
-            ASSERT_FALSE( l.empty() );
+            ASSERT_FALSE( l.empty());
             ASSERT_CONTAINER_SIZE( l, nSize );
 
             // extract() test
             for ( auto const& i : arr ) {
-                ASSERT_FALSE( l.empty() );
+                ASSERT_FALSE( l.empty());
                 ASSERT_CONTAINER_SIZE( l, nCount );
                 --nCount;
 
@@ -128,7 +125,7 @@ namespace cds_test {
                 EXPECT_FALSE( gp );
             }
 
-            ASSERT_TRUE( l.empty() );
+            ASSERT_TRUE( l.empty());
             ASSERT_CONTAINER_SIZE( l, 0 );
         }
     };