summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarshall Clow <mclow.lists@gmail.com>2018-02-01 14:54:25 +0000
committerMarshall Clow <mclow.lists@gmail.com>2018-02-01 14:54:25 +0000
commit95db3d2871d5678054d1ba3271f81baf60977c69 (patch)
tree21bfe59bb8f6bff536a6c13034b0e99595f6d9e8 /src
parent75075c6be00e97137fd099299efc47496d0ea2b4 (diff)
downloadexternal_libcxx-95db3d2871d5678054d1ba3271f81baf60977c69.tar.gz
external_libcxx-95db3d2871d5678054d1ba3271f81baf60977c69.tar.bz2
external_libcxx-95db3d2871d5678054d1ba3271f81baf60977c69.zip
Remove <experimental/optional>; use <optional> instead. See https://libcxx.llvm.org/TS_deprecation.html
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@323971 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'src')
-rw-r--r--src/optional.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/optional.cpp b/src/optional.cpp
index 2877d175b..6444987bf 100644
--- a/src/optional.cpp
+++ b/src/optional.cpp
@@ -8,7 +8,6 @@
//===----------------------------------------------------------------------===//
#include "optional"
-#include "experimental/optional"
namespace std
{
@@ -21,8 +20,3 @@ const char* bad_optional_access::what() const _NOEXCEPT {
} // std
-_LIBCPP_BEGIN_NAMESPACE_EXPERIMENTAL
-
-bad_optional_access::~bad_optional_access() _NOEXCEPT = default;
-
-_LIBCPP_END_NAMESPACE_EXPERIMENTAL