From 7f923e81e1fdeba78b52f5e283859c5783b54374 Mon Sep 17 00:00:00 2001 From: Paul Mensonides Date: Fri, 21 Jun 2002 23:08:36 +0000 Subject: [PATCH] indirect file inclusion [SVN r14222] --- .../boost/preprocessor/detail/iterate/self.hpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 include/boost/preprocessor/detail/iterate/self.hpp diff --git a/include/boost/preprocessor/detail/iterate/self.hpp b/include/boost/preprocessor/detail/iterate/self.hpp new file mode 100644 index 0000000..0a7c026 --- /dev/null +++ b/include/boost/preprocessor/detail/iterate/self.hpp @@ -0,0 +1,18 @@ +# /* ************************************************************************** +# * * +# * (C) Copyright Paul Mensonides 2002. Permission to copy, use, * +# * modify, sell, and distribute this software is granted provided * +# * this copyright notice appears in all copies. This software is * +# * provided "as is" without express or implied warranty, and with * +# * no claim at to its suitability for any purpose. * +# * * +# ************************************************************************** */ +# +# line 1 "" +# +# if !defined(BOOST_PP_INDIRECT_FILE) +# error BOOST_PP: no file to indirect file to include defined +# else +# include BOOST_PP_INDIRECT_FILE +# undef BOOST_PP_INDIRECT_FILE +# endif