Skip to content

Commit 062d6c6

Browse files
committed
Use std::optional in value_expr_from_smt_factoryt
1 parent a479356 commit 062d6c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/solvers/smt2_incremental/construct_value_expr_from_smt.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class value_expr_from_smt_factoryt : public smt_term_const_downcast_visitort
1616
private:
1717
const typet &type_to_construct;
1818
const namespacet &ns;
19-
optionalt<exprt> result;
19+
std::optional<exprt> result;
2020

2121
explicit value_expr_from_smt_factoryt(
2222
const typet &type_to_construct,

0 commit comments

Comments
 (0)