Skip to content

Commit 1ab6db2

Browse files
committed
Update SMT AST to refer to std::optional instead of optionalt
1 parent d7b937a commit 1ab6db2

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

src/solvers/smt2_incremental/ast/smt_commands.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class smt_commandt : protected irept
1515
{
1616
public:
1717
// smt_commandt does not support the notion of an empty / null state. Use
18-
// optionalt<smt_commandt> instead if an empty command is required.
18+
// std::optional<smt_commandt> instead if an empty command is required.
1919
smt_commandt() = delete;
2020

2121
using irept::pretty;

src/solvers/smt2_incremental/ast/smt_index.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class smt_indext : protected irept
1414
{
1515
public:
1616
// smt_indext does not support the notion of an empty / null state. Use
17-
// optionalt<smt_indext> instead if an empty index is required.
17+
// std::optional<smt_indext> instead if an empty index is required.
1818
smt_indext() = delete;
1919

2020
using irept::pretty;

src/solvers/smt2_incremental/ast/smt_logics.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class smt_logict : protected irept
1111
{
1212
public:
1313
// smt_logict does not support the notion of an empty / null state. Use
14-
// optionalt<smt_logict> instead if an empty logic is required.
14+
// std::optional<smt_logict> instead if an empty logic is required.
1515
smt_logict() = delete;
1616

1717
using irept::pretty;

src/solvers/smt2_incremental/ast/smt_options.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class smt_optiont : protected irept
1111
{
1212
public:
1313
// smt_optiont does not support the notion of an empty / null state. Use
14-
// optionalt<smt_optiont> instead if an empty option is required.
14+
// std::optional<smt_optiont> instead if an empty option is required.
1515
smt_optiont() = delete;
1616

1717
using irept::pretty;

src/solvers/smt2_incremental/ast/smt_responses.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class smt_responset : protected irept
1111
{
1212
public:
1313
// smt_responset does not support the notion of an empty / null state. Use
14-
// optionalt<smt_responset> instead if an empty response is required.
14+
// std::optional<smt_responset> instead if an empty response is required.
1515
smt_responset() = delete;
1616

1717
using irept::pretty;
@@ -36,7 +36,7 @@ class smt_check_sat_response_kindt : protected irept
3636
{
3737
public:
3838
// smt_responset does not support the notion of an empty / null state. Use
39-
// optionalt<smt_responset> instead if an empty response is required.
39+
// std::optional<smt_responset> instead if an empty response is required.
4040
smt_check_sat_response_kindt() = delete;
4141

4242
using irept::pretty;

src/solvers/smt2_incremental/ast/smt_sorts.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class smt_sortt : protected irept
1818
{
1919
public:
2020
// smt_sortt does not support the notion of an empty / null state. Use
21-
// optionalt<smt_sortt> instead if an empty sort is required.
21+
// std::optional<smt_sortt> instead if an empty sort is required.
2222
smt_sortt() = delete;
2323

2424
using irept::pretty;

src/solvers/smt2_incremental/ast/smt_terms.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class smt_termt : protected irept, private smt_sortt::storert<smt_termt>
2121
{
2222
public:
2323
// smt_termt does not support the notion of an empty / null state. Use
24-
// optionalt<smt_termt> instead if an empty term is required.
24+
// std::optional<smt_termt> instead if an empty term is required.
2525
smt_termt() = delete;
2626

2727
using irept::pretty;

0 commit comments

Comments
 (0)