@@ -139,14 +139,14 @@ valid_smt_error_response(const irept &parse_tree)
139
139
// unexpected in the parse tree is now considered to be an invalid response.
140
140
if (parse_tree.get_sub ().size () == 1 )
141
141
{
142
- return {response_or_errort<smt_responset>{
143
- " Error response is missing the error message." }};
142
+ return {response_or_errort<smt_responset>{std::vector<std::string>{
143
+ { " Error response is missing the error message." }} }};
144
144
}
145
145
if (parse_tree.get_sub ().size () > 2 )
146
146
{
147
- return {response_or_errort<smt_responset>{
148
- " Error response has multiple error messages - \" " +
149
- print_parse_tree (parse_tree) + " \" ." }};
147
+ return {response_or_errort<smt_responset>{std::vector<std::string>{
148
+ { " Error response has multiple error messages - \" " +
149
+ print_parse_tree (parse_tree) + " \" ." }} }};
150
150
}
151
151
return validation_propagating<smt_error_responset, smt_responset>(
152
152
validate_string_literal (parse_tree.get_sub ()[1 ]));
@@ -250,10 +250,10 @@ static optionalt<response_or_errort<smt_termt>> try_select_validation(
250
250
return {};
251
251
if (parse_tree.get_sub ().size () != 3 )
252
252
{
253
- return response_or_errort<smt_termt>{
254
- " \" select\" is expected to have 2 arguments, but " +
255
- std::to_string (parse_tree.get_sub ().size ()) +
256
- " arguments were found - \" " + print_parse_tree (parse_tree) + " \" ." };
253
+ return response_or_errort<smt_termt>{std::vector<std::string>{
254
+ { " \" select\" is expected to have 2 arguments, but " +
255
+ std::to_string (parse_tree.get_sub ().size ()) +
256
+ " arguments were found - \" " + print_parse_tree (parse_tree) + " \" ." }} };
257
257
}
258
258
const auto array = validate_term (parse_tree.get_sub ()[1 ], identifier_table);
259
259
const auto index = validate_term (parse_tree.get_sub ()[2 ], identifier_table);
@@ -281,8 +281,8 @@ static response_or_errort<smt_termt> validate_term(
281
281
{
282
282
return *select_validation;
283
283
}
284
- return response_or_errort<smt_termt>{" Unrecognised SMT term - \" " +
285
- print_parse_tree (parse_tree) + " \" ." };
284
+ return response_or_errort<smt_termt>{std::vector<std::string>{
285
+ { " Unrecognised SMT term - \" " + print_parse_tree (parse_tree) + " \" ." }} };
286
286
}
287
287
288
288
static response_or_errort<smt_get_value_responset::valuation_pairt>
@@ -305,10 +305,10 @@ validate_valuation_pair(
305
305
if (valid_descriptor.get_sort () != valid_value.get_sort ())
306
306
{
307
307
return resultt{
308
- " Mismatched descriptor and value sorts in - " +
309
- print_parse_tree (pair_parse_tree) + " \n Descriptor has sort " +
310
- smt_to_smt2_string (valid_descriptor.get_sort ()) + " \n Value has sort " +
311
- smt_to_smt2_string (valid_value.get_sort ())};
308
+ { " Mismatched descriptor and value sorts in - " +
309
+ print_parse_tree (pair_parse_tree) + " \n Descriptor has sort " +
310
+ smt_to_smt2_string (valid_descriptor.get_sort ()) + " \n Value has sort " +
311
+ smt_to_smt2_string (valid_value.get_sort ())} };
312
312
}
313
313
// see https://github.com/diffblue/cbmc/issues/7464 for why we explicitly name
314
314
// the valuation_pairt type here:
@@ -378,6 +378,6 @@ response_or_errort<smt_responset> validate_smt_response(
378
378
{
379
379
return *get_value_response;
380
380
}
381
- return response_or_errort<smt_responset>{" Invalid SMT response \" " +
382
- id2string (parse_tree.id ()) + " \" " };
381
+ return response_or_errort<smt_responset>{std::vector<std::string>{
382
+ { " Invalid SMT response \" " + id2string (parse_tree.id ()) + " \" " }} };
383
383
}
0 commit comments