CNL  2.0.2 (development)
Compositional Numeric Library
cnl_assert.h
1 
2 // Copyright John McFarlane 2015 - 2016.
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file ../LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 
7 #if !defined(CNL_IMPL_CNL_ASSERT_H)
8 #define CNL_IMPL_CNL_ASSERT_H
9 
10 #include "abort.h"
11 #include "config.h"
12 #include "likely.h"
13 #include "unreachable.h"
14 
16 // CNL_ASSERT - with passing resemblance to code from github.com/Microsoft/GSL
17 
18 // CNL_ASSERT - enforces that a condition *must* be true
19 // NOLINTNEXTLINE(cppcoreguidelines-macro-usage)
20 #define CNL_ASSERT(CONDITION) \
21  ((CONDITION) \
22  ? static_cast<void>(0) \
23  : cnl::_impl::unreachable(__FILE__ ":" CNL_STR(__LINE__) " assert: " #CONDITION))
24 
25 #endif // CNL_IMPL_CNL_ASSERT_H
config.h
definitions which can be used to configure CNL library