2002-07-07 22:17:51 +00:00
|
|
|
# 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 <boost/preprocessor/stringize.hpp>
|
|
|
|
#
|
2002-07-09 14:01:46 +00:00
|
|
|
# if !defined(__MWERKS__) || __MWERKS__ > 0x3001
|
2002-07-07 22:17:51 +00:00
|
|
|
# define BOOST_PP_DETAIL_LINE(text) 1 BOOST_PP_STRINGIZE(text)
|
|
|
|
# else
|
|
|
|
# define BOOST_PP_DETAIL_LINE(text) 1
|
|
|
|
# endif
|
|
|
|
#
|
|
|
|
# endif
|