Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(295)

Unified Diff: test/unittests/base/iterator-unittest.cc

Issue 2834293002: Avoid signed/unsigned warning in VC++ 2017 builds (Closed)
Patch Set: Avoid signed/unsigned warning in VC++ 2017 builds Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/unittests/base/iterator-unittest.cc
diff --git a/test/unittests/base/iterator-unittest.cc b/test/unittests/base/iterator-unittest.cc
index 8da26ce20eedc4767c80490d4c502f8046a37673..c5fe7bc5055648fe255bd82d4acb77dec9727577 100644
--- a/test/unittests/base/iterator-unittest.cc
+++ b/test/unittests/base/iterator-unittest.cc
@@ -42,7 +42,7 @@ TEST(IteratorTest, IteratorRangeArray) {
TEST(IteratorTest, IteratorRangeDeque) {
- typedef std::deque<unsigned> C;
+ typedef std::deque<int> C;
C c;
c.push_back(1);
c.push_back(2);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698