Add macro DUNE_ASSERT_AND_RETURN
1 unresolved thread
1 unresolved thread
This is an alternative to !128 (closed).
In C++11 and with not fully C++14 compliant compilers constexpr
functions
can only have a return statement. This prevents the use of assert()
inside
of constexpr
functions. This macro can be used as a workaround like this:
constexpr auto foo(int a, int b, x)
{
return DUNE_ASSERT_AND_RETURN(a<b, x);
}
For NDEBUG
there is no penalty. Otherwise there are two options:
- In a non-
constexpr
context anassert()
will fail if the condition is not matched. The error message will be slightly different from a classic assertion. - In a
constexpr
context theassert()
branch will be ignored if the is condition is matched. Otherwise this will lead to a compile error (likestatic_assert
) because the branch usingassert()
is notconstexpr
.
Merge request reports
Activity
Mentioned in merge request !128 (closed)
- dune/common/assertandreturn.hh 0 → 100644
1 // -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- 2 // vi: set et ts=4 sw=2 sts=2: 3 #ifndef DUNE_COMMON_ASSERTANDRETURN_HH 4 #define DUNE_COMMON_ASSERTANDRETURN_HH 5 6 7 // The macro DUNE_ASSERT_AND_RETURN can be used as expression in the return 8 // statement of a constexpr function to have assert() and constexpr at the 9 // same time. It first uses assert for the condition given by the first argument 10 // and then returns the value of the second argument. 11 #ifdef NDEBUG 12 #define DUNE_ASSERT_AND_RETURN(C,X) 0 Added 17 commits:
-
d20c8803...6b3ad219 - 14 commits from branch
master
- 3103ae8b - Add macro DUNE_ASSERT_AND_RETURN
- 0ed3254b - Use DUNE_ASSERT_AND_RETURN
- 63c0a712 - [test] Add test for DUNE_ASSERT_AND_RETURN
Toggle commit list-
d20c8803...6b3ad219 - 14 commits from branch
Mentioned in commit 1410d4a9
Please register or sign in to reply