aboutsummaryrefslogtreecommitdiff
path: root/libcxx/include/optional
AgeCommit message (Expand)AuthorFilesLines
2025-12-01[libc++][NFC] Add optional<T&> synopsis (#170043)William Tran-Viet1-0/+65
2025-11-13[libc++] Merge is_{,un}bounded_array.h into is_array.h (#167479)Nikolas Klauser1-1/+0
2025-11-12[libc++] Implement P2988R12: `std::optional<T&>` (#155202)William Tran-Viet1-111/+215
2025-11-11[libc++] Remove __is_replaceable emulation (#167355)Louis Dionne1-2/+0
2025-09-24[libc++] Implement Resolution of LWG 3886 (#155356)William Tran-Viet1-8/+9
2025-08-18[libc++] Implement P3168R2: Give optional range support (#149441)William Tran-Viet1-0/+68
2025-07-15[libc++] P2944R3: Constrained comparisons - `optional` (#144249)Hristo Hristov1-39/+55
2025-06-02[libc++] Remove availability annotations which can't fire anymore (#140049)Nikolas Klauser1-14/+13
2025-05-28Revert "[libc++] Introduce ABI sensitive areas to avoid requiring _LIBCPP_HID...James Y Knight1-4/+3
2025-05-23[libc++][NFC] Replace a few "namespace std" with the correct macro (#140510)Nikolas Klauser1-3/+4
2025-05-08[libc++] Add the __is_replaceable type trait (#132408)Louis Dionne1-0/+2
2025-04-09[libc++] Remove _LIBCPP_TEMPLATE_VIS (#134885)Nikolas Klauser1-1/+1
2025-04-09[libc++][C++03] Remove headers which don't provide anything (#134044)Nikolas Klauser1-1/+1
2025-02-21[libc++] Qualify calls to nullary functions like __throw_foo (#122465)Louis Dionne1-4/+4
2025-02-15[libc++][NFC] Make enable_ifs in <optional> consistent (#127184)Nikolas Klauser1-121/+114
2025-01-08[libc++] Put _LIBCPP_NODEBUG on all internal aliases (#118710)Nikolas Klauser1-13/+14
2024-12-21[libc++][C++03] Use `__cxx03/` headers in C++03 mode (#109002)Nikolas Klauser1-3/+4
2024-12-17[libc++] Granularize <new> includes (#119964)Nikolas Klauser1-1/+0
2024-12-10[libc++] Add #if 0 block to all the top-level headers (#119234)Nikolas Klauser1-98/+101
2024-11-04[libc++][NFC] Use more appropriate type traits for a few cases (#114025)Nikolas Klauser1-0/+2
2024-10-12[libc++][RFC] Always define internal feature test macros (#89178)Nikolas Klauser1-1/+1
2024-10-03[libc++] Re-apply LWG3870: Remove `voidify` (#110944)A. Jiang1-3/+3
2024-10-01Revert "[libc++] LWG3870: Remove `voidify` (#110355)" (#110587)Michael Buch1-3/+3
2024-10-01[libc++] LWG3870: Remove `voidify` (#110355)A. Jiang1-3/+3
2024-09-16[libc++][modules] Fix missing and incorrect includes (#108850)Louis Dionne1-0/+3
2024-09-11[libc++][NFC] Replace _LIBCPP_NORETURN and TEST_NORETURN with [[noreturn]] (#...Nikolas Klauser1-1/+1
2024-08-14[libc++] Fix ambiguous constructors for std::complex and std::optional (#103409)Louis Dionne1-3/+6
2024-07-21[libc++] Makes `unique_ptr operator*() noexcept. (#98047)Mark de Wever1-8/+8
2024-06-18[libc++][NFC] Run clang-format on libcxx/include again (#95874)Louis Dionne1-6/+6
2024-06-17[libc++] Mark more types as trivially relocatable (#89724)Nikolas Klauser1-0/+3
2024-05-28[libc++] Make the __availability header a sub-header of __config (#93083)Louis Dionne1-1/+0
2024-03-18[libc++][NFC] Merge is{,_nothrow,_trivially}{,_copy,_move,_default}{_assignab...Nikolas Klauser1-10/+4
2024-03-14[libc++] Remove a few includes from <__functional/hash.h> (#83254)Nikolas Klauser1-0/+1
2024-03-03[libc++] Rename __fwd/hash.h to __fwd/functional.h and add reference_wrapper ...Nikolas Klauser1-1/+1
2024-02-29[libc++] Clean up includes of <__assert> (#80091)Louis Dionne1-1/+1
2023-12-18[libc++] Format the code base (#74334)Louis Dionne1-1074/+685
2023-12-05[libc++] Replace uses of _VSTD:: by std:: (#74331)Louis Dionne1-55/+55
2023-12-04[libc++] Rename _LIBCPP_INLINE_VISIBILITY to _LIBCPP_HIDE_FROM_ABI (#74095)Louis Dionne1-113/+113
2023-11-26[libc++][NFC] Use __construct_at and __destroy_at instead of using preprocess...philnik7771-5/+1
2023-10-29[libc++] Remove a few transitive includes (#70553)philnik7771-1/+2
2023-09-12[libc++][test] Add '-Wdeprecated-copy', '-Wdeprecated-copy-dtor' warnings to ...Igor Zhukov1-0/+3
2023-08-20[libc++][expected] Implement LWG3836yrong1-3/+4
2023-07-24[libc++] Fix template parameter naming and enforce it through readability-ide...Nikolas Klauser1-1/+1
2023-07-20[libc++][hardening] Categorize most assertions inside the container classes.varconst1-8/+8
2023-07-06Fixing conflicting macro definitions between curses.h and the standard library.Nicole Rabjohn1-0/+5
2023-06-28[libc++][hardening][NFC] Introduce `_LIBCPP_ASSERT_UNCATEGORIZED`.varconst1-8/+8
2023-06-15[libc++] Merge _LIBCPP_FUNC_VIS, _LIBCPP_TYPE_VIS and _LIBCPP_EXCEPTION_ABI i...Nikolas Klauser1-1/+1
2023-05-07[libc++][Modules] Add missing includes and exportsIan Anderson1-0/+22
2023-05-05[libc++][spaceship] Implement `operator<=>` for `optional`Hristo Hristov1-76/+139
2023-04-27Fix EBO on std::optional and std::variant when targeting the MSVC ABIEric Fiselier1-1/+1