Commit 17cef273 authored by Michaël Zasso's avatar Michaël Zasso Committed by Commit Bot

[compiler] Explicitly initialize const member

This fixes a compilation error with Xcode.

Change-Id: Iaab7cab0d3200c5622f306c7ad0926931d5dce47
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1948716Reviewed-by: 's avatarPeter Marshall <petermarshall@chromium.org>
Reviewed-by: 's avatarMaya Lekova <mslekova@chromium.org>
Commit-Queue: Michaël Zasso <mic.besace@gmail.com>
Cr-Commit-Position: refs/heads/master@{#65327}
parent 323c66c6
......@@ -309,7 +309,7 @@ class VirtualClosure {
class CompilationSubject {
public:
explicit CompilationSubject(VirtualClosure virtual_closure)
: virtual_closure_(virtual_closure) {}
: virtual_closure_(virtual_closure), closure_() {}
// The zone parameter is to correctly initialize the virtual closure,
// which contains zone-allocated context information.
......
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