forked from boostorg/config
Fix for undefined BOOST_NORETURN
This commit is contained in:
@ -628,12 +628,14 @@ namespace std{ using ::type_info; }
|
|||||||
# if __has_cpp_attribute(noreturn)
|
# if __has_cpp_attribute(noreturn)
|
||||||
# define BOOST_NORETURN [[noreturn]]
|
# define BOOST_NORETURN [[noreturn]]
|
||||||
# endif
|
# endif
|
||||||
# else
|
|
||||||
# define BOOST_NO_NORETURN
|
|
||||||
# define BOOST_NORETURN
|
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if !defined(BOOST_NORETURN)
|
||||||
|
# define BOOST_NO_NORETURN
|
||||||
|
# define BOOST_NORETURN
|
||||||
|
#endif
|
||||||
|
|
||||||
// Branch prediction hints
|
// Branch prediction hints
|
||||||
// These macros are intended to wrap conditional expressions that yield true or false
|
// These macros are intended to wrap conditional expressions that yield true or false
|
||||||
//
|
//
|
||||||
|
Reference in New Issue
Block a user