diff --git a/src/DebugToFile.cpp b/src/DebugToFile.cpp index 9d9627d63a08..8147e4cfe7f1 100644 --- a/src/DebugToFile.cpp +++ b/src/DebugToFile.cpp @@ -11,7 +11,6 @@ namespace Halide { namespace Internal { using std::map; -using std::ostringstream; using std::string; using std::vector; @@ -124,7 +123,7 @@ class AddDummyRealizations : public IRMutator { Stmt s = IRMutator::visit(op); for (const Function &out : outputs) { if (op->name == out.name()) { - std::vector output_bounds; + vector output_bounds; for (int i = 0; i < out.dimensions(); i++) { string dim = std::to_string(i); Expr min = Variable::make(Int(32), out.name() + ".min." + dim);