]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/config/test/boost_no_cxx11_hdr_tuple.ipp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / config / test / boost_no_cxx11_hdr_tuple.ipp
CommitLineData
7c673cae
FG
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_TUPLE
10// TITLE: C++0x header <tuple> unavailable
11// DESCRIPTION: The standard library does not supply C++0x header <tuple>
12
13#include <tuple>
14
15namespace boost_no_cxx11_hdr_tuple {
16
17int test()
18{
19 std::tuple<int, int, long> t(0, 1, 2);
92f5a8d4 20 (void)t;
7c673cae
FG
21 return 0;
22}
23
24}