We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 014188e + 3174549 commit f6898d4Copy full SHA for f6898d4
src/solvers/smt2_incremental/smt_response_validation.cpp
@@ -310,7 +310,10 @@ validate_valuation_pair(
310
smt_to_smt2_string(valid_descriptor.get_sort()) + "\nValue has sort " +
311
smt_to_smt2_string(valid_value.get_sort())};
312
}
313
- return resultt{{valid_descriptor, valid_value}};
+ // see https://github.com/diffblue/cbmc/issues/7464 for why we explicitly name
314
+ // the valuation_pairt type here:
315
+ return resultt{
316
+ smt_get_value_responset::valuation_pairt{valid_descriptor, valid_value}};
317
318
319
/// \returns: A response or error in the case where the parse tree appears to be
0 commit comments