Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/config/no_tr1/complex.hpp @ 120:4729c8589274 emscripten-piper
Add piper builds
author | Chris Cannam |
---|---|
date | Fri, 11 Nov 2016 15:49:32 +0000 |
parents | 2665513ce2d3 |
children |
rev | line source |
---|---|
Chris@16 | 1 // (C) Copyright John Maddock 2005. |
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 <complex> 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/complex 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_COMPLEX |
Chris@16 | 14 # define BOOST_CONFIG_COMPLEX |
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_COMPLEX_RECURSION |
Chris@16 | 19 # endif |
Chris@16 | 20 |
Chris@16 | 21 # include <complex> |
Chris@16 | 22 |
Chris@16 | 23 # ifdef BOOST_CONFIG_NO_COMPLEX_RECURSION |
Chris@16 | 24 # undef BOOST_TR1_NO_RECURSION |
Chris@16 | 25 # undef BOOST_CONFIG_NO_COMPLEX_RECURSION |
Chris@16 | 26 # endif |
Chris@16 | 27 |
Chris@16 | 28 #endif |