Fix gcov build

Gcov builds such as
https://ci.chromium.org/p/v8/builders/ci/V8%20Linux64%20-%20gcov%20coverage/18276
are failing because they can't find std::copy_if. Including the right
header fixes it.

Change-Id: I3f0e3fabfe1b32cc4492aee64d2b9f23fa4afdcb
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1600431
Reviewed-by: Michael Achenbach <machenbach@chromium.org>
Commit-Queue: Michael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/master@{#61364}
This commit is contained in:
Seth Brenith 2019-05-08 14:06:32 -07:00 committed by Commit Bot
parent 96f10b9044
commit 7e247b591d

View File

@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <algorithm>
#include <cctype>
#include <set>
#include <unordered_map>