Remove building with NOCRYPTO option
[minix.git] / external / bsd / libc++ / dist / libcxx / src / optional.cpp
blob8c5dd76d86d6b9ee1fab944de91a252870d3df9f
1 //===------------------------ optional.cpp --------------------------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
10 #include "experimental/optional"
12 _LIBCPP_BEGIN_NAMESPACE_EXPERIMENTAL
14 #ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
16 bad_optional_access::~bad_optional_access() _NOEXCEPT {}
18 #else
20 bad_optional_access::~bad_optional_access() _NOEXCEPT = default;
22 #endif
24 _LIBCPP_END_NAMESPACE_EXPERIMENTAL