For the same reason as in #5119.
void traits::precondition(const bool b)
{
- AlwaysAssert(b);
+ Assert(b);
return;
}
void traits::postcondition(const bool b)
{
- AlwaysAssert(b);
+ Assert(b);
return;
}
void traits::invariant(const bool b)
{
- AlwaysAssert(b);
+ Assert(b);
return;
}
void traits::precondition(const prop &p)
{
- AlwaysAssert(p);
+ Assert(p);
return;
}
void traits::postcondition(const prop &p)
{
- AlwaysAssert(p);
+ Assert(p);
return;
}
void traits::invariant(const prop &p)
{
- AlwaysAssert(p);
+ Assert(p);
return;
}
}