From 1be8ba2320d36e7de780fe2964a1e690bd26d428 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Wed, 14 Feb 2018 17:58:02 -0800 Subject: [PATCH] Mark the NVIDIA compiler as supported See https://svn.boost.org/trac10/ticket/13447 --- include/boost/preprocessor/config/config.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/boost/preprocessor/config/config.hpp b/include/boost/preprocessor/config/config.hpp index 28dcdd4..34edf83 100644 --- a/include/boost/preprocessor/config/config.hpp +++ b/include/boost/preprocessor/config/config.hpp @@ -83,6 +83,8 @@ # /* Wave (C/C++), GCC (C++) */ # elif defined __WAVE__ && __WAVE_HAS_VARIADICS__ || defined __GNUC__ && defined __GXX_EXPERIMENTAL_CXX0X__ && __GXX_EXPERIMENTAL_CXX0X__ # define BOOST_PP_VARIADICS 1 +# elif defined __CUDACC__ +# define BOOST_PP_VARIADICS 1 # /* EDG-based (C/C++), GCC (C), and unknown (C/C++) */ # elif !defined __cplusplus && __STDC_VERSION__ >= 199901L || __cplusplus >= 201103L # define BOOST_PP_VARIADICS 1