aboutsummaryrefslogtreecommitdiff
path: root/libcxx/src/optional.cpp
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
commit040533215adb65f20380f6e94dc03acf25c60371 (patch)
tree472e1c0cb077e8c1608a14d43b351cd94490b774 /libcxx/src/optional.cpp
parentafc7c63bc2beb6fa9c0366bbb1664fdc39222c5f (diff)
downloadllvm-040533215adb65f20380f6e94dc03acf25c60371.zip
llvm-040533215adb65f20380f6e94dc03acf25c60371.tar.gz
llvm-040533215adb65f20380f6e94dc03acf25c60371.tar.bz2
Remove <experimental/optional>; use <optional> instead. See https://libcxx.llvm.org/TS_deprecation.html
llvm-svn: 323971
Diffstat (limited to 'libcxx/src/optional.cpp')
-rw-r--r--libcxx/src/optional.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/libcxx/src/optional.cpp b/libcxx/src/optional.cpp
index 2877d17..6444987 100644
--- a/libcxx/src/optional.cpp
+++ b/libcxx/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