]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/preprocessor/test/clang_cuda.cu
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / libs / preprocessor / test / clang_cuda.cu
CommitLineData
92f5a8d4
TL
1# /* **************************************************************************
2# * *
3# * (C) Copyright Edward Diener 2019.
4# * Distributed under the Boost Software License, Version 1.0. (See
5# * accompanying file LICENSE_1_0.txt or copy at
6# * http://www.boost.org/LICENSE_1_0.txt)
7# * *
8# ************************************************************************** */
9#
10# /* See http://www.boost.org for most recent version. */
11#
12# include <libs/preprocessor/test/test_macro.h>
13
14#if defined(__clang__) && defined(__CUDACC__) && defined(__CUDA__)
15
16BEGIN BOOST_PP_VARIADICS == 1 END
17
18#else
19
20BEGIN 0 == 1 END
21
22#endif
23
24int main(void) {
25 return 0;
26}