[libcxx-commits] [PATCH] D155259: [libc++][NFC] Remove std:: qualifications from math headers
Mark de Wever via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Jul 14 09:26:47 PDT 2023
Mordante accepted this revision.
Mordante added a comment.
This revision is now accepted and ready to land.
Thanks for the cleanup, LGTM!
================
Comment at: libcxx/include/__math/exponential_functions.h:159
{
- typedef typename std::__promote<_A1, _A2>::type __result_type;
- static_assert((!(std::_IsSame<_A1, __result_type>::value &&
- std::_IsSame<_A2, __result_type>::value)), "");
+ typedef typename __promote<_A1, _A2>::type __result_type;
+ static_assert((!(_IsSame<_A1, __result_type>::value &&
----------------
Will there be a separate patch to replace the `typedef` with `using`?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D155259/new/
https://reviews.llvm.org/D155259
More information about the libcxx-commits
mailing list