Skip to content

Commit

Permalink
fix missing parenthesis in C++ API
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <[email protected]>
  • Loading branch information
NikolajBjorner committed Sep 8, 2020
1 parent f976b16 commit 1c7d27b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/c++/z3++.h
Original file line number Diff line number Diff line change
Expand Up @@ -2310,7 +2310,7 @@ namespace z3 {

friend std::ostream & operator<<(std::ostream & out, model const & m);

std::string to_string() const { return std::string(Z3_model_to_string(ctx(), m_model); }
std::string to_string() const { return std::string(Z3_model_to_string(ctx(), m_model)); }
};
inline std::ostream & operator<<(std::ostream & out, model const & m) { out << Z3_model_to_string(m.ctx(), m); return out; }

Expand Down

0 comments on commit 1c7d27b

Please sign in to comment.