3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00

z3++.h: No longer include unused sstream.

This makes some code using the C++ API have to include `<sstream>`
if they used the functionality but didn't include it themselves.
This commit is contained in:
Bruce Mitchener 2022-08-04 23:49:39 +07:00 committed by Nikolaj Bjorner
parent e48474ec0e
commit 6835522a7f
5 changed files with 4 additions and 1 deletions

View file

@ -23,7 +23,6 @@ Notes:
#include<cassert>
#include<ostream>
#include<string>
#include<sstream>
#include<memory>
#include<vector>
#include<z3.h>

View file

@ -1,4 +1,5 @@
#include "jlcxx/jlcxx.hpp"
#include <sstream>
#include "z3++.h"
using namespace z3;