Files
boost_preprocessor/include/boost/preprocessor/seq/push_back.hpp

21 lines
973 B
C++
Raw Normal View History

2002-10-13 06:11:19 +00:00
# /* **************************************************************************
# * *
# * (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. *
# * *
# ************************************************************************** */
#
# /* See http://www.boost.org for most recent version. */
#
2002-11-07 23:16:43 +00:00
# ifndef BOOST_PREPROCESSOR_SEQ_PUSH_BACK_HPP
# define BOOST_PREPROCESSOR_SEQ_PUSH_BACK_HPP
2002-10-13 06:11:19 +00:00
#
2002-11-07 23:16:43 +00:00
# /* BOOST_PP_SEQ_PUSH_BACK */
2002-10-13 06:11:19 +00:00
#
2002-11-07 23:16:43 +00:00
# define BOOST_PP_SEQ_PUSH_BACK(seq, elem) seq(elem)
2002-10-13 06:11:19 +00:00
#
# endif