Commit 3bb9ab56 authored by Leszek Swirski's avatar Leszek Swirski Committed by V8 LUCI CQ

[test] Fix unused variable in cctest loop

Change-Id: Ia574baaa796f1b2d6feea3e76364c9c417fb8ceb
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3571899
Commit-Queue: Leszek Swirski <leszeks@chromium.org>
Auto-Submit: Leszek Swirski <leszeks@chromium.org>
Reviewed-by: 's avatarMichael Lippautz <mlippautz@chromium.org>
Commit-Queue: Michael Lippautz <mlippautz@chromium.org>
Cr-Commit-Position: refs/heads/main@{#79808}
parent 54603f2a
...@@ -336,8 +336,8 @@ i::Handle<i::JSFunction> Optimize( ...@@ -336,8 +336,8 @@ i::Handle<i::JSFunction> Optimize(
} }
static void PrintTestList() { static void PrintTestList() {
for (auto [name, test] : g_cctests.Get()) { for (const auto& entry : g_cctests.Get()) {
printf("%s\n", name.c_str()); printf("%s\n", entry.first.c_str());
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment