]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/predef/include/boost/predef/library/std/_prefix.h
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / predef / include / boost / predef / library / std / _prefix.h
CommitLineData
7c673cae
FG
1/*
2Copyright Rene Rivera 2008-2013
3Distributed under the Boost Software License, Version 1.0.
4(See accompanying file LICENSE_1_0.txt or copy at
5http://www.boost.org/LICENSE_1_0.txt)
6*/
7#ifndef BOOST_PREDEF_LIBRARY_STD__PREFIX_H
8#define BOOST_PREDEF_LIBRARY_STD__PREFIX_H
9
10/*
11We need to include an STD header to gives us the context
12of which library we are using. The "smallest" code-wise header
13seems to be <exception>. Boost uses <utility> but as far
14as I can tell (RR) it's not a stand-alone header in most
15implementations. Using <exception> also has the benefit of
16being available in EC++, so we get a chance to make this work
17for embedded users. And since it's not a header impacted by TR1
18there's no magic needed for inclusion in the face of the
19Boost.TR1 library.
20*/
21#include <boost/predef/detail/_exception.h>
22
23#endif