3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-10 01:41:57 +00:00

fix build errors

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-05-01 09:05:20 -07:00
parent 5ba814b14f
commit a91d7a7189
3 changed files with 4 additions and 5 deletions

View file

@ -33,7 +33,6 @@ namespace sat {
};
inline std::ostream& operator<<(std::ostream& out, pp_prefix const& p) {
uint64_t q = p.m_prefix;
unsigned d = std::min(63u, p.m_depth);
for (unsigned i = 0; i <= d; ++i) {
if (0 != (p.m_prefix & (1ull << i))) out << "1"; else out << "0";