[PATCH] D55366: [libcxx] Add checks for unique value of array<T, 0>.begin() and array<T, 0>.end() .
Louis Dionne via Phabricator
reviews at reviews.llvm.org
Thu Dec 6 10:27:47 PST 2018
ldionne closed this revision.
ldionne added a comment.
Committed as r348509.
================
Comment at: test/std/containers/sequences/array/begin.pass.cpp:47
+ assert(ib == ie);
+ LIBCPP_ASSERT(ib != nullptr);
+ LIBCPP_ASSERT(ie != nullptr);
----------------
This doesn't compile because you're missing an include of `"test_macros.h"`. Please make a habit of running the tests before submitting a review.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D55366/new/
https://reviews.llvm.org/D55366
More information about the libcxx-commits
mailing list