3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00

merge with 4.7.1

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-05-22 17:10:36 -07:00
commit 50c93d1ad4
25 changed files with 182 additions and 103 deletions

View file

@ -108,7 +108,9 @@ public:
#endif
}
~line_reader() {
fclose(m_file);
if (m_file != nullptr){
fclose(m_file);
}
}
bool operator()() { return m_ok; }