fix(build): C++ module dependency problem, and style
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
c8e1ec87d2
commit
28eb980484
2 changed files with 3 additions and 0 deletions
|
@ -20,6 +20,7 @@ Author: Leonardo de Moura
|
|||
#include "kernel/builtin.h"
|
||||
#include "kernel/io_state.h"
|
||||
#include "library/io_state_stream.h"
|
||||
#include "library/ite.h"
|
||||
#include "library/expr_pair.h"
|
||||
#include "library/expr_pair_maps.h"
|
||||
#include "library/arith/nat.h"
|
||||
|
@ -569,6 +570,7 @@ io_state init_frontend(environment const & env, bool no_kernel) {
|
|||
io_state init_test_frontend(environment const & env) {
|
||||
env->set_trusted_imported(true);
|
||||
io_state ios = init_frontend(env);
|
||||
import_ite(env, ios);
|
||||
import_int(env, ios);
|
||||
import_real(env, ios);
|
||||
return ios;
|
||||
|
|
|
@ -5,6 +5,7 @@ Released under Apache 2.0 license as described in the file LICENSE.
|
|||
Author: Leonardo de Moura
|
||||
*/
|
||||
#include <utility>
|
||||
#include <string>
|
||||
#include "util/sstream.h"
|
||||
#include "util/script_state.h"
|
||||
#include "kernel/expr.h"
|
||||
|
|
Loading…
Reference in a new issue