summaryrefslogtreecommitdiffstats
path: root/compiler/sea_ir/debug/dot_gen.h
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/sea_ir/debug/dot_gen.h')
-rw-r--r--compiler/sea_ir/debug/dot_gen.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/sea_ir/debug/dot_gen.h b/compiler/sea_ir/debug/dot_gen.h
index d7d21ad05a..a5d681919d 100644
--- a/compiler/sea_ir/debug/dot_gen.h
+++ b/compiler/sea_ir/debug/dot_gen.h
@@ -104,7 +104,7 @@ class DotConversion {
LOG(INFO) << "Starting to write SEA string to file " << filename << std::endl;
DotGenerationVisitor dgv = DotGenerationVisitor(&options_, types);
graph->Accept(&dgv);
- // TODO: UniquePtr to close file properly. Switch to BufferedOutputStream.
+ // TODO: std::unique_ptr to close file properly. Switch to BufferedOutputStream.
art::File* file = art::OS::CreateEmptyFile(filename.c_str());
art::FileOutputStream fos(file);
std::string graph_as_string = dgv.GetResult();