3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-01-29 18:37:38 -08:00
parent ff475cbd5f
commit c99b805c14
3 changed files with 15 additions and 6 deletions

View file

@ -16,6 +16,7 @@ Author:
--*/
#include "util/gparams.h"
#include "util/zstring.h"
#include "util/trace.h"
static bool is_hex_digit(char ch, unsigned& d) {
if ('0' <= ch && ch <= '9') {
@ -147,6 +148,7 @@ std::string zstring::encode() const {
}
}
_flush();
TRACE("seq", tout << "encode " << strm.str() << "\n";);
return strm.str();
}