From: khizmax Date: Wed, 18 Jan 2017 13:16:17 +0000 (+0300) Subject: Fixed minor compiler warning X-Git-Tag: v2.3.0~191 X-Git-Url: http://plrg.eecs.uci.edu/git/?p=libcds.git;a=commitdiff_plain;h=2e6c28ac7550f26f8e95bb9a7e776caced3d9ec2 Fixed minor compiler warning --- diff --git a/test/unit/queue/fcqueue.cpp b/test/unit/queue/fcqueue.cpp index ac599b50..193fa591 100644 --- a/test/unit/queue/fcqueue.cpp +++ b/test/unit/queue/fcqueue.cpp @@ -73,7 +73,7 @@ namespace { ASSERT_EQ( q.size(), static_cast( i + 1 )); } ASSERT_FALSE( q.empty()); - ASSERT_EQ( q.size(), nSize ); + ASSERT_EQ( q.size(), static_cast( nSize )); for ( int i = 0; i < nSize; ++i ) { it = value_type( -1 );