diff options
Diffstat (limited to 'compiler/optimizing/graph_checker.h')
-rw-r--r-- | compiler/optimizing/graph_checker.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/optimizing/graph_checker.h b/compiler/optimizing/graph_checker.h index 4dee42738e..aff2358411 100644 --- a/compiler/optimizing/graph_checker.h +++ b/compiler/optimizing/graph_checker.h @@ -108,7 +108,7 @@ class GraphChecker : public HGraphDelegateVisitor { } } - protected: + private: // Report a new error. void AddError(const std::string& error) { errors_.push_back(error); @@ -119,7 +119,6 @@ class GraphChecker : public HGraphDelegateVisitor { // Errors encountered while checking the graph. ArenaVector<std::string> errors_; - private: void VisitReversePostOrder(); // Checks that the graph's flags are set correctly. |