annotate DEPENDENCIES/generic/include/boost/predef/library/std/_prefix.h @ 125:34e428693f5d vext

Vext -> Repoint
author Chris Cannam
date Thu, 14 Jun 2018 11:15:39 +0100
parents c530137014c0
children
rev   line source
Chris@16 1 /*
Chris@101 2 Copyright Rene Rivera 2008-2013
Chris@16 3 Distributed under the Boost Software License, Version 1.0.
Chris@16 4 (See accompanying file LICENSE_1_0.txt or copy at
Chris@16 5 http://www.boost.org/LICENSE_1_0.txt)
Chris@16 6 */
Chris@16 7 #ifndef BOOST_PREDEF_LIBRARY_STD__PREFIX_H
Chris@16 8 #define BOOST_PREDEF_LIBRARY_STD__PREFIX_H
Chris@16 9
Chris@16 10 /*
Chris@16 11 We need to include an STD header to gives us the context
Chris@16 12 of which library we are using. The "smallest" code-wise header
Chris@16 13 seems to be <exception>. Boost uses <utility> but as far
Chris@16 14 as I can tell (RR) it's not a stand-alone header in most
Chris@16 15 implementations. Using <exception> also has the benefit of
Chris@16 16 being available in EC++, so we get a chance to make this work
Chris@16 17 for embedded users. And since it's not a header impacted by TR1
Chris@16 18 there's no magic needed for inclusion in the face of the
Chris@16 19 Boost.TR1 library.
Chris@16 20 */
Chris@16 21 #include <boost/predef/detail/_exception.h>
Chris@16 22
Chris@16 23 #endif