summaryrefslogtreecommitdiff
path: root/compiler/optimizing/codegen_test_utils.h
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2017-05-11 11:42:28 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-05-11 11:42:30 +0000
commit99a77162e9dc351da14bb7819a2718395d7277ed (patch)
tree1c02905cb5f2573bd3bf8c8f1effc50c91086593 /compiler/optimizing/codegen_test_utils.h
parent32a680a5799fffede606b817fae1643250bb1d76 (diff)
parent7d157fcaaae137cc98dbfb872aa1bdc0105a898f (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.h2
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;
}
}