annotate DEPENDENCIES/generic/include/boost/config/abi_suffix.hpp @ 125:34e428693f5d vext

Vext -> Repoint
author Chris Cannam
date Thu, 14 Jun 2018 11:15:39 +0100
parents 2665513ce2d3
children
rev   line source
Chris@16 1 // abi_sufffix header -------------------------------------------------------//
Chris@16 2
Chris@16 3 // (c) Copyright John Maddock 2003
Chris@16 4
Chris@16 5 // Use, modification and distribution are subject to the Boost Software License,
Chris@16 6 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
Chris@16 7 // http://www.boost.org/LICENSE_1_0.txt).
Chris@16 8
Chris@16 9 // This header should be #included AFTER code that was preceded by a #include
Chris@16 10 // <boost/config/abi_prefix.hpp>.
Chris@16 11
Chris@16 12 #ifndef BOOST_CONFIG_ABI_PREFIX_HPP
Chris@16 13 # error Header boost/config/abi_suffix.hpp must only be used after boost/config/abi_prefix.hpp
Chris@16 14 #else
Chris@16 15 # undef BOOST_CONFIG_ABI_PREFIX_HPP
Chris@16 16 #endif
Chris@16 17
Chris@16 18 // the suffix header occurs after all of our code:
Chris@16 19 #ifdef BOOST_HAS_ABI_HEADERS
Chris@16 20 # include BOOST_ABI_SUFFIX
Chris@16 21 #endif
Chris@16 22
Chris@16 23 #if defined( __BORLANDC__ )
Chris@16 24 #pragma nopushoptwarn
Chris@16 25 #endif
Chris@16 26
Chris@16 27