Skip to content

Commit 4ed256d

Browse files
committed
IWYU
1 parent 2dbeb36 commit 4ed256d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/solvers/smt2_incremental/smt2_incremental_decision_procedure.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ class smt2_incremental_decision_proceduret final
134134
messaget log;
135135
/// Generators of sequences of uniquely identifying numbers used for naming
136136
/// SMT functions introduced by the decision procedure.
137-
class sequencet // IWYU pragma: keep
137+
class sequencet
138138
{
139139
size_t next_id = 0;
140140

@@ -143,7 +143,8 @@ class smt2_incremental_decision_proceduret final
143143
{
144144
return next_id++;
145145
}
146-
} handle_sequence, array_sequence, index_sequence, padding_sequence;
146+
};
147+
sequencet handle_sequence, array_sequence, index_sequence, padding_sequence;
147148
/// When the `handle(exprt)` member function is called, the decision procedure
148149
/// commands the SMT solver to define a new function corresponding to the
149150
/// given expression. The mapping of the expressions to the function

0 commit comments

Comments
 (0)