3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 19:05:51 +00:00

enable printing in Release

Signed-off-by: Lev <levnach@hotmail.com>
This commit is contained in:
Lev 2018-07-09 20:48:39 -07:00
parent 5c712d471f
commit c4c52ad104
13 changed files with 10 additions and 33 deletions

View file

@ -96,6 +96,7 @@ bool indexed_vector<T>::is_OK() const {
return true;
}
#endif
template <typename T>
void indexed_vector<T>::print(std::ostream & out) {
out << "m_index " << std::endl;
@ -105,6 +106,5 @@ void indexed_vector<T>::print(std::ostream & out) {
out << std::endl;
print_vector(m_data, out);
}
#endif
}