From cc650688ade67a69dff971a459947956bf0dc3fa Mon Sep 17 00:00:00 2001 From: Paul Mensonides Date: Sun, 7 Jul 2002 22:17:51 +0000 Subject: [PATCH] obtuse detail line directives [SVN r14329] --- include/boost/preprocessor/detail/line.hpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 include/boost/preprocessor/detail/line.hpp diff --git a/include/boost/preprocessor/detail/line.hpp b/include/boost/preprocessor/detail/line.hpp new file mode 100644 index 0000000..180d5d3 --- /dev/null +++ b/include/boost/preprocessor/detail/line.hpp @@ -0,0 +1,22 @@ +# ifndef BOOST_PREPROCESSOR_DETAIL_LINE_HPP +# define BOOST_PREPROCESSOR_DETAIL_LINE_HPP +# +# /* ************************************************************************** +# * * +# * (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. * +# * * +# ************************************************************************** */ +# +# include +# +# if !defined(__MWERKS__) || __MWERKS__ > 0x3000 +# define BOOST_PP_DETAIL_LINE(text) 1 BOOST_PP_STRINGIZE(text) +# else +# define BOOST_PP_DETAIL_LINE(text) 1 +# endif +# +# endif