mirror of
https://github.com/Z3Prover/z3
synced 2026-04-02 18:08:57 +00:00
Fix constructor initializer list syntax in nielsen_graph
m_len_vars(sg.get_manager()) was incorrectly placed inside the constructor
body after the opening { instead of being part of the initializer list.
Move it to the correct position in the initializer list.
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
parent
9b0a7c17a5
commit
572e8a74b0
1 changed files with 1 additions and 1 deletions
|
|
@ -444,8 +444,8 @@ namespace seq {
|
|||
nielsen_graph::nielsen_graph(euf::sgraph& sg, simple_solver& solver):
|
||||
m_sg(sg),
|
||||
m_solver(solver),
|
||||
m_len_vars(sg.get_manager()),
|
||||
m_parikh(alloc(seq_parikh, sg)) {
|
||||
m_len_vars(sg.get_manager()) {
|
||||
}
|
||||
|
||||
nielsen_graph::~nielsen_graph() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue