Removed dbc and replaced with plain asserts everywhere.
This commit is contained in:
parent
767147c301
commit
adc192c6dc
17 changed files with 69 additions and 185 deletions
|
@ -76,7 +76,7 @@ struct Calculator {
|
|||
temp = left / right;
|
||||
break;
|
||||
default:
|
||||
dbc::sentinel("invalid op passed to op()");
|
||||
assert(true && "invalid op passed to op()");
|
||||
}
|
||||
|
||||
stack.push_back(temp);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue