diff options
Diffstat (limited to 'compiler/optimizing/graph_checker.h')
-rw-r--r-- | compiler/optimizing/graph_checker.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/optimizing/graph_checker.h b/compiler/optimizing/graph_checker.h index db3130678a..badf21d946 100644 --- a/compiler/optimizing/graph_checker.h +++ b/compiler/optimizing/graph_checker.h @@ -53,7 +53,7 @@ class GraphChecker : public HGraphVisitor { } // Print detected errors on output stream `os`. - void Dump(std::ostream& os) { + void Dump(std::ostream& os) const { for (size_t i = 0, e = errors_.Size(); i < e; ++i) { os << dump_prefix_ << errors_.Get(i) << std::endl; } @@ -68,7 +68,7 @@ class GraphChecker : public HGraphVisitor { private: // String displayed before dumped errors. - const char* dump_prefix_; + const char* const dump_prefix_; DISALLOW_COPY_AND_ASSIGN(GraphChecker); }; |