chore: revert "chore: add std::cout.flush"

This reverts commit a43a225013.
This commit is contained in:
Sebastian Ullrich 2019-11-03 19:44:49 +01:00 committed by Leonardo de Moura
parent fdccf9ad14
commit d8bb4df96f

View file

@ -94,7 +94,6 @@ extern "C" obj_res lean_io_initializing(obj_arg) {
extern "C" obj_res lean_io_prim_put_str(b_obj_arg s, obj_arg) {
std::cout << string_to_std(s); // TODO(Leo): use out handle
std::cout.flush(); // TODO(Leo): remove following line. Added for chasing bug
return set_io_result(box(0));
}