]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/config/test/boost_no_cxx11_hdr_system_error.ipp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / config / test / boost_no_cxx11_hdr_system_error.ipp
1 // (C) Copyright Beman Dawes 2009
2
3 // Use, modification and distribution are subject to the
4 // Boost Software License, Version 1.0. (See accompanying file
5 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6
7 // See http://www.boost.org/libs/config for more information.
8
9 // MACRO: BOOST_NO_CXX11_HDR_SYSTEM_ERROR
10 // TITLE: C++0x header <system_error> unavailable
11 // DESCRIPTION: The standard library does not supply C++0x header <system_error>
12
13 #include <system_error>
14
15 namespace boost_no_cxx11_hdr_system_error {
16
17 int test()
18 {
19 using std::error_category;
20 using std::error_code;
21 using std::error_condition;
22 using std::system_error;
23 return 0;
24 }
25
26 }