diff options
| author | Matthew Parlane <parlane@gmail.com> | 2014-03-17 17:43:20 +1300 |
|---|---|---|
| committer | Matthew Parlane <parlane@gmail.com> | 2014-03-17 17:43:20 +1300 |
| commit | 6445e02d53a9951c845c2fed23d825109f9b6d79 (patch) | |
| tree | de14a92b7e7f144c328739eb5339ef9436d49dd0 /Source/UnitTests/Common/FixedSizeQueueTest.cpp | |
| parent | d3e9702cecc5b7f9078ef3448f7d513226ebeedd (diff) | |
| parent | 46becfc06b3a8b91d0500a8ee226c85b4450dddf (diff) | |
Merge pull request #159 from Tilka/misc
Cleanup stuff
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()); } |
