1. fd34566 Put the exception classes for experimental::optional and experimental::any back in the dylib for binary compatibility by Marshall Clow · 7 years ago
  2. 95db3d2 Remove <experimental/optional>; use <optional> instead. See https://libcxx.llvm.org/TS_deprecation.html by Marshall Clow · 7 years ago
  3. 0becc20 Restore the _NOEXCEPT on the dtor of bad_optional_access. Destructors are noexcept by default, so it's not really needed, but the other exception classes have the _NOEXCEPT, and gcc complains if these are missing. I think we should remove them all - but not today. by Marshall Clow · 8 years ago
  4. e2261bd Change the base class of std::bad_optional_access. This is a (subtle) ABI change, and is in response to http://http://wg21.link/LWG2806, which I *expect* to be adopted in Kona. I am making this change now in anticipation, and will get it into 4.0, because (a) 4.0 is the first release with std::optional, and (b) I don't want to make an ABI-change later, when the user base should be significantly larger. Note that I didn't change std::experimental::bad_optional_access, because that's still specified to derive from std::logic_error. by Marshall Clow · 8 years ago
  5. 35ce485 Implement N4606 optional by Eric Fiselier · 8 years ago
  6. ead5d40 Revert Add <optional>. Will recommit with better commit message by Eric Fiselier · 8 years ago
  7. fbc8016 Add <optional> header. by Eric Fiselier · 8 years ago
  8. 4ad67e0 Add all the relational operators to std::experimental::optional. Also update bad_optional_access to match the Library Fundamentals draft standard. This is not all of the upcoming changes to optional, though. by Marshall Clow · 10 years ago
  9. 0cdbe60 Move <optional> into include/experimental, and into the std::experimental namespace, since it's not part of C++14, but of an upcoming TS by Marshall Clow · 11 years ago
  10. f2a137d Evgeniy Stepanov: Add noexcept to ~bad_optional_access() to silence warning during build. by Howard Hinnant · 11 years ago
  11. 01afa5c Implement N3672, optional<T>. by Howard Hinnant · 11 years ago