We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efb1c40 commit 4782b48Copy full SHA for 4782b48
regression/invariants/driver.cpp
@@ -40,16 +40,18 @@ class structured_error_testt: public invariant_failedt
40
const std::string &function,
41
int line,
42
const std::string &backtrace,
43
+ const std::string &condition,
44
int code,
- const std::string &_description):
45
- invariant_failedt(
46
- file,
47
- function,
48
- line,
49
- backtrace,
50
- pretty_print(code, _description)),
51
- error_code(code),
52
- description(_description)
+ const std::string &_description)
+ : invariant_failedt(
+ file,
+ function,
+ line,
+ backtrace,
+ condition,
+ pretty_print(code, _description)),
53
+ error_code(code),
54
+ description(_description)
55
{
56
}
57
};
0 commit comments