Skip to content

Commit 4b7b25f

Browse files
committed
Avoid overload conflict when USE_STD_STRING is set
We must not end up with two constructors that take the same argument type.
1 parent 9489585 commit 4b7b25f

File tree

3 files changed

+19
-23
lines changed

3 files changed

+19
-23
lines changed

src/solvers/smt2_incremental/response_or_error.h

-5
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,6 @@ class response_or_errort final
2020
{
2121
}
2222

23-
explicit response_or_errort(std::string message)
24-
: messages{std::move(message)}
25-
{
26-
}
27-
2823
explicit response_or_errort(std::vector<std::string> messages)
2924
: messages{std::move(messages)}
3025
{

src/solvers/smt2_incremental/smt_response_validation.cpp

+17-17
Original file line numberDiff line numberDiff line change
@@ -139,14 +139,14 @@ valid_smt_error_response(const irept &parse_tree)
139139
// unexpected in the parse tree is now considered to be an invalid response.
140140
if(parse_tree.get_sub().size() == 1)
141141
{
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."}}}};
144144
}
145145
if(parse_tree.get_sub().size() > 2)
146146
{
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) + "\"."}}}};
150150
}
151151
return validation_propagating<smt_error_responset, smt_responset>(
152152
validate_string_literal(parse_tree.get_sub()[1]));
@@ -250,10 +250,10 @@ static optionalt<response_or_errort<smt_termt>> try_select_validation(
250250
return {};
251251
if(parse_tree.get_sub().size() != 3)
252252
{
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) + "\"."}}};
257257
}
258258
const auto array = validate_term(parse_tree.get_sub()[1], identifier_table);
259259
const auto index = validate_term(parse_tree.get_sub()[2], identifier_table);
@@ -281,8 +281,8 @@ static response_or_errort<smt_termt> validate_term(
281281
{
282282
return *select_validation;
283283
}
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) + "\"."}}};
286286
}
287287

288288
static response_or_errort<smt_get_value_responset::valuation_pairt>
@@ -305,10 +305,10 @@ validate_valuation_pair(
305305
if(valid_descriptor.get_sort() != valid_value.get_sort())
306306
{
307307
return resultt{
308-
"Mismatched descriptor and value sorts in - " +
309-
print_parse_tree(pair_parse_tree) + "\nDescriptor has sort " +
310-
smt_to_smt2_string(valid_descriptor.get_sort()) + "\nValue 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) + "\nDescriptor has sort " +
310+
smt_to_smt2_string(valid_descriptor.get_sort()) + "\nValue has sort " +
311+
smt_to_smt2_string(valid_value.get_sort())}};
312312
}
313313
// see https://github.com/diffblue/cbmc/issues/7464 for why we explicitly name
314314
// the valuation_pairt type here:
@@ -378,6 +378,6 @@ response_or_errort<smt_responset> validate_smt_response(
378378
{
379379
return *get_value_response;
380380
}
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()) + "\""}}};
383383
}

unit/solvers/smt2_incremental/smt_response_validation.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ TEST_CASE("response_or_errort storage", "[core][smt2_incremental]")
2222
SECTION("Error response")
2323
{
2424
const std::string message{"Test error message"};
25-
const response_or_errort<smt_responset> error{message};
25+
const response_or_errort<smt_responset> error{
26+
std::vector<std::string>{{message}}};
2627
CHECK_FALSE(error.get_if_valid());
2728
CHECK(*error.get_if_error() == std::vector<std::string>{message});
2829
}

0 commit comments

Comments
 (0)