projects
/
libcds.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0851c04
)
Fixed minor compiler warning
author
khizmax
<khizmax@gmail.com>
Wed, 18 Jan 2017 13:16:17 +0000
(16:16 +0300)
committer
khizmax
<khizmax@gmail.com>
Wed, 18 Jan 2017 13:16:17 +0000
(16:16 +0300)
test/unit/queue/fcqueue.cpp
patch
|
blob
|
history
diff --git
a/test/unit/queue/fcqueue.cpp
b/test/unit/queue/fcqueue.cpp
index ac599b50564969ff1e257e31721f1fe6fcbb16dd..193fa59159b8391cdf1567ab87bf16ab167b6eed 100644
(file)
--- a/
test/unit/queue/fcqueue.cpp
+++ b/
test/unit/queue/fcqueue.cpp
@@
-73,7
+73,7
@@
namespace {
ASSERT_EQ( q.size(), static_cast<size_t>( i + 1 ));
}
ASSERT_FALSE( q.empty());
- ASSERT_EQ( q.size(),
nSize
);
+ ASSERT_EQ( q.size(),
static_cast<size_t>( nSize )
);
for ( int i = 0; i < nSize; ++i ) {
it = value_type( -1 );