diff options
| author | Tillmann Karras <tilkax@gmail.com> | 2014-03-15 03:30:59 +0100 |
|---|---|---|
| committer | Tillmann Karras <tilkax@gmail.com> | 2014-03-17 02:55:58 +0100 |
| commit | 46becfc06b3a8b91d0500a8ee226c85b4450dddf (patch) | |
| tree | b5b3b71bf1b617ee5d062456c02f00f435010ecd /Source/UnitTests/Common/FixedSizeQueueTest.cpp | |
| parent | fa3cc057530570ba4113e022b3f44c2483a87684 (diff) | |
Tests: fix signed/unsigned comparison warning
Diffstat (limited to 'Source/UnitTests/Common/FixedSizeQueueTest.cpp')
| -rw-r--r-- | Source/UnitTests/Common/FixedSizeQueueTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/UnitTests/Common/FixedSizeQueueTest.cpp b/Source/UnitTests/Common/FixedSizeQueueTest.cpp index 484dc64419..d77f3645f0 100644 --- a/Source/UnitTests/Common/FixedSizeQueueTest.cpp +++ b/Source/UnitTests/Common/FixedSizeQueueTest.cpp @@ -10,7 +10,7 @@ TEST(FixedSizeQueue, Simple) { FixedSizeQueue<int, 5> q; - EXPECT_EQ(0, q.size()); + EXPECT_EQ(0u, q.size()); q.push(0); q.push(1); @@ -29,5 +29,5 @@ TEST(FixedSizeQueue, Simple) EXPECT_EQ(1003, q.pop_front()); EXPECT_EQ(1004, q.pop_front()); - EXPECT_EQ(0, q.size()); + EXPECT_EQ(0u, q.size()); } |
