mirror of
https://github.com/Z3Prover/z3
synced 2026-03-18 02:53:46 +00:00
Fix build: correct constructor initializer list syntax in seq_nielsen.cpp
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
parent
196ce815f3
commit
c6cfd43ab2
1 changed files with 1 additions and 1 deletions
|
|
@ -444,7 +444,7 @@ namespace seq {
|
|||
nielsen_graph::nielsen_graph(euf::sgraph& sg, simple_solver& solver):
|
||||
m_sg(sg),
|
||||
m_solver(solver),
|
||||
m_parikh(alloc(seq_parikh, sg)) {
|
||||
m_parikh(alloc(seq_parikh, sg)),
|
||||
m_len_vars(sg.get_manager()) {
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue