3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 10:25:18 +00:00

add const &

This commit is contained in:
Doug Woos 2017-01-30 15:09:57 -08:00
parent 5796e15088
commit 3791810920

View file

@ -130,7 +130,7 @@ class model2mc : public model_converter {
public:
model2mc(model * m):m_model(m) {}
model2mc(model * m, buffer<symbol> r):m_model(m), m_labels(r) {}
model2mc(model * m, buffer<symbol> const & r):m_model(m), m_labels(r) {}
virtual ~model2mc() {}