[PATCH] D54966: Implement P1007R3 `std::assume_aligned`
Marshall Clow via Phabricator
reviews at reviews.llvm.org
Wed Nov 28 07:35:42 PST 2018
mclow.lists marked an inline comment as done.
mclow.lists added inline comments.
================
Comment at: test/std/utilities/memory/ptr.align/assume_aligned.pass.cpp:29
+ ASSERT_SAME_TYPE(T*, decltype(std::assume_aligned<1, T>(p)));
+ LIBCPP_ASSERT_NOEXCEPT( std::assume_aligned<1, T>(p));
+ assert((p == std::assume_aligned<1>(p)));
----------------
A tab snuck in here. I'll detab before I commit.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D54966/new/
https://reviews.llvm.org/D54966
More information about the libcxx-commits
mailing list