Skip to content

Commit

Permalink
Disable __VA_OPT__ for Clang 8 as well
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimov committed Feb 4, 2024
1 parent ec8d33c commit 3f3f1e0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions include/boost/preprocessor/variadic/has_opt.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
# if defined(__cplusplus) && __cplusplus > 201703L
# if defined(__GNUC__) && !defined(__clang__) && __GNUC__ >= 8 && __GNUC__ < 10
# define BOOST_PP_VARIADIC_HAS_OPT() 0
# elif defined(__clang__) && __clang_major__ < 9
# define BOOST_PP_VARIADIC_HAS_OPT() 0
# else
# include <boost/preprocessor/variadic/detail/has_opt.hpp>
# define BOOST_PP_VARIADIC_HAS_OPT() \
Expand Down

0 comments on commit 3f3f1e0

Please sign in to comment.