blob: e035156c9589dac59ddc75a360f24b97b3535825 [file] [log] [blame]
Jeff Thompsonf7d49942013-08-01 16:47:40 -07001// (C) Copyright John Maddock 2005.
2// Use, modification and distribution are subject to the
3// Boost Software License, Version 1.0. (See accompanying file
4// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5//
6// The aim of this header is just to include <memory> but to do
7// so in a way that does not result in recursive inclusion of
Jeff Thompson9939dcd2013-10-15 15:12:24 -07008// the Boost TR1 components if ndnboost/tr1/tr1/memory is in the
Jeff Thompsonf7d49942013-08-01 16:47:40 -07009// include search path. We have to do this to avoid circular
10// dependencies:
11//
12
13#ifndef BOOST_CONFIG_MEMORY
14# define BOOST_CONFIG_MEMORY
15
16# ifndef BOOST_TR1_NO_RECURSION
17# define BOOST_TR1_NO_RECURSION
18# define BOOST_CONFIG_NO_MEMORY_RECURSION
19# endif
20
21# include <memory>
22
23# ifdef BOOST_CONFIG_NO_MEMORY_RECURSION
24# undef BOOST_TR1_NO_RECURSION
25# undef BOOST_CONFIG_NO_MEMORY_RECURSION
26# endif
27
28#endif