Sha256: 785b74eabbe910810c5f849c15c82616e674836f6330be0398cbaf4df0d602a9
Contents?: true
Size: 635 Bytes
Versions: 3
Compression:
Stored size: 635 Bytes
Contents
//===------------------------ optional.cpp --------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #include "optional" namespace std // purposefully not using versioning namespace { #ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS bad_optional_access::~bad_optional_access() _NOEXCEPT {} #else bad_optional_access::~bad_optional_access() _NOEXCEPT = default; #endif } // std
Version data entries
3 entries across 3 versions & 1 rubygems