EricWF added a comment. LGTM.
Feel free to address the inline comments or not. ================ Comment at: test/std/containers/sequences/deque/deque.capacity/access.pass.cpp:55 std::deque<int> c = make<std::deque<int> >(10); for (unsigned i = 0; i < 10; ++i) + assert(c[i] == static_cast<int>(i)); ---------------- Wouldn't it make more sense to change these loop indexes to be `int` instead of `unsigned`? https://reviews.llvm.org/D27023 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits