[libcxx-commits] [PATCH] D155701: [libc++][expected] Implement LWG3836
Mark de Wever via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Sat Aug 19 04:04:25 PDT 2023
Mordante accepted this revision.
Mordante added a comment.
This revision is now accepted and ready to land.
LGTM after a minor fix.
================
Comment at: libcxx/include/__expected/expected.h:178-179
+ _Not<is_convertible<const expected<_Up, _OtherErr>&, _Tp>>,
+ _Not<is_convertible<const expected<_Up, _OtherErr>&&, _Tp>> >,
+ true_type >,
_Not<is_constructible<unexpected<_Err>, expected<_Up, _OtherErr>&>>,
----------------
Some whitespace fixed. This is not done by clang-format since that breaks in C++03.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D155701/new/
https://reviews.llvm.org/D155701
More information about the libcxx-commits
mailing list