File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/solvers/smt2_incremental Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -206,7 +206,7 @@ struct sort_based_cast_to_bit_vector_convertert final
206
206
const smt_termt &from_term;
207
207
const typet &from_type;
208
208
const bitvector_typet &to_type;
209
- optionalt <smt_termt> result;
209
+ std::optional <smt_termt> result;
210
210
211
211
sort_based_cast_to_bit_vector_convertert (
212
212
const smt_termt &from_term,
@@ -299,7 +299,7 @@ static smt_termt convert_expr_to_smt(
299
299
struct sort_based_literal_convertert : public smt_sort_const_downcast_visitort
300
300
{
301
301
const constant_exprt &member_input;
302
- optionalt <smt_termt> result;
302
+ std::optional <smt_termt> result;
303
303
304
304
explicit sort_based_literal_convertert (const constant_exprt &input)
305
305
: member_input{input}
@@ -591,7 +591,7 @@ static smt_termt convert_relational_to_smt(
591
591
binary_relation.pretty ());
592
592
}
593
593
594
- static optionalt <smt_termt> try_relational_conversion (
594
+ static std::optional <smt_termt> try_relational_conversion (
595
595
const exprt &expr,
596
596
const sub_expression_mapt &converted)
597
597
{
You can’t perform that action at this time.
0 commit comments