Fixed minor gcc warnings
[libcds.git] / test / unit / map / test_michael_michael_rcu.h
index 43684bdaa8e4299ae59c04086783143f7609c61d..e40a2b5ec5f35a708b519aa144506bc593580a04 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:
 
@@ -199,7 +199,7 @@ namespace {
 
         map_type m( TestFixture::kSize, 4 );
         this->test( m );
-        EXPECT_GE( m.statistics().m_nInsertSuccess, 0 );
+        EXPECT_GE( m.statistics().m_nInsertSuccess, 0u );
     }
 
     TYPED_TEST_P( MichaelMap, wrapped_stat )
@@ -225,7 +225,7 @@ namespace {
 
         map_type m( TestFixture::kSize, 4 );
         this->test( m );
-        EXPECT_GE( m.statistics().m_nInsertSuccess, 0 );
+        EXPECT_GE( m.statistics().m_nInsertSuccess, 0u );
     }
 
     REGISTER_TYPED_TEST_CASE_P( MichaelMap,