annotate DEPENDENCIES/generic/include/boost/config/no_tr1/cmath.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 // (C) Copyright John Maddock 2008.
Chris@16 2 // Use, modification and distribution are subject to the
Chris@16 3 // Boost Software License, Version 1.0. (See accompanying file
Chris@16 4 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
Chris@16 5 //
Chris@16 6 // The aim of this header is just to include <cmath> but to do
Chris@16 7 // so in a way that does not result in recursive inclusion of
Chris@16 8 // the Boost TR1 components if boost/tr1/tr1/cmath is in the
Chris@16 9 // include search path. We have to do this to avoid circular
Chris@16 10 // dependencies:
Chris@16 11 //
Chris@16 12
Chris@16 13 #ifndef BOOST_CONFIG_CMATH
Chris@16 14 # define BOOST_CONFIG_CMATH
Chris@16 15
Chris@16 16 # ifndef BOOST_TR1_NO_RECURSION
Chris@16 17 # define BOOST_TR1_NO_RECURSION
Chris@16 18 # define BOOST_CONFIG_NO_CMATH_RECURSION
Chris@16 19 # endif
Chris@16 20
Chris@16 21 # include <cmath>
Chris@16 22
Chris@16 23 # ifdef BOOST_CONFIG_NO_CMATH_RECURSION
Chris@16 24 # undef BOOST_TR1_NO_RECURSION
Chris@16 25 # undef BOOST_CONFIG_NO_CMATH_RECURSION
Chris@16 26 # endif
Chris@16 27
Chris@16 28 #endif