summaryrefslogtreecommitdiff
path: root/libcxx/include/__variant
Commit message (Collapse)AuthorAgeFilesLines
* [libc++][NFC] Remove useless _LIBCPP_PUSH_MACROSLouis Dionne2021-08-271-5/+0
| | | | | | Only files that actually use min/max are required to do this dance. Differential Revision: https://reviews.llvm.org/D108778
* [libc++][NFC] Move monostate to its own header.Mark de Wever2021-07-081-0/+65
The format library uses `std::monostate`, but not a `std::variant`. Moving `std::monostate` to its own header allows the format library to reduce the amount of included code. Reviewed By: #libc, ldionne Differential Revision: https://reviews.llvm.org/D105582