diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2017-05-11 11:42:28 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-05-11 11:42:30 +0000 |
commit | 99a77162e9dc351da14bb7819a2718395d7277ed (patch) | |
tree | 1c02905cb5f2573bd3bf8c8f1effc50c91086593 /compiler/optimizing/codegen_test_utils.h | |
parent | 32a680a5799fffede606b817fae1643250bb1d76 (diff) | |
parent | 7d157fcaaae137cc98dbfb872aa1bdc0105a898f (diff) |
Merge "Clean up some uses of "auto"."
Diffstat (limited to 'compiler/optimizing/codegen_test_utils.h')
-rw-r--r-- | compiler/optimizing/codegen_test_utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/codegen_test_utils.h b/compiler/optimizing/codegen_test_utils.h index 31cd204c9f..00a16fe849 100644 --- a/compiler/optimizing/codegen_test_utils.h +++ b/compiler/optimizing/codegen_test_utils.h @@ -243,7 +243,7 @@ static void ValidateGraph(HGraph* graph) { GraphChecker graph_checker(graph); graph_checker.Run(); if (!graph_checker.IsValid()) { - for (const auto& error : graph_checker.GetErrors()) { + for (const std::string& error : graph_checker.GetErrors()) { std::cout << error << std::endl; } } |