From 3838dc3697e3e59007352487ffd47626832fa3df Mon Sep 17 00:00:00 2001 From: lucapegolotti Date: Fri, 29 Apr 2016 16:32:21 +0200 Subject: [PATCH] containers_cpp: solve various compiler warnings --- containers_cpp/include/embb/containers/internal/blocking_push_and_pop_container.h | 3 +++ containers_cpp/test/map_test-inl.h | 5 +++-- containers_cpp/test/set_test-inl.h | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/containers_cpp/include/embb/containers/internal/blocking_push_and_pop_container.h b/containers_cpp/include/embb/containers/internal/blocking_push_and_pop_container.h index 2437877..a5a2887 100755 --- a/containers_cpp/include/embb/containers/internal/blocking_push_and_pop_container.h +++ b/containers_cpp/include/embb/containers/internal/blocking_push_and_pop_container.h @@ -67,6 +67,9 @@ class BlockingPushAndPopContainer { SpecializedPop(element); } + + public: + virtual ~BlockingPushAndPopContainer() {} }; } // namespace containers diff --git a/containers_cpp/test/map_test-inl.h b/containers_cpp/test/map_test-inl.h index 1ce5d64..99dae41 100755 --- a/containers_cpp/test/map_test-inl.h +++ b/containers_cpp/test/map_test-inl.h @@ -78,7 +78,8 @@ void MapTest::MapTest1_Post() { for (unsigned int i = 0; i < map_elements; i++) { PT_ASSERT(map_contain_vector[i] == map.Contains(static_cast(i))); if (map_contain_vector[i]) - PT_ASSERT((map[i] == i * 2)); + PT_ASSERT(map[static_cast(i)] == + static_cast(i * 2)); } } @@ -89,7 +90,7 @@ void MapTest::MapTest1_ThreadMethod() { PT_ASSERT((EMBB_SUCCESS == return_val)); - srand(time(NULL)); + srand(static_cast(time(NULL))); std::vector& my_values = thread_local_vectors_value[thread_index]; std::vector& my_keys = thread_local_vectors_key[thread_index]; diff --git a/containers_cpp/test/set_test-inl.h b/containers_cpp/test/set_test-inl.h index d99896e..264298f 100755 --- a/containers_cpp/test/set_test-inl.h +++ b/containers_cpp/test/set_test-inl.h @@ -89,7 +89,7 @@ void SetTest::SetTest1_ThreadMethod() { PT_ASSERT(EMBB_SUCCESS == return_val); - srand(time(NULL)); + srand(static_cast(time(NULL))); std::vector& my_elements = thread_local_vectors[thread_index]; -- libgit2 0.26.0