From 6bd8f99925ee09c9388575386d641dfc55719a29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Mon, 26 Jun 2017 15:29:31 +0200 Subject: [PATCH] Fix ArrayBuffer::Allocator::AllocationMode lookup CL https://chromium-review.googlesource.com/c/523271/6 introduced a wrong lookup of ArrayBuffer::Allocator::Allocator::AllocationMode that breaks compilation with Visual Studio 2013. R=jochen@chromium.org Bug: Cq-Include-Trybots: master.tryserver.chromium.linux:linux_chromium_rel_ng Change-Id: I160242bc24ef8c23574d3ec3734be822a681b408 Reviewed-on: https://chromium-review.googlesource.com/548399 Reviewed-by: Jochen Eisinger Commit-Queue: Jochen Eisinger Cr-Commit-Position: refs/heads/master@{#46240} --- include/v8.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/v8.h b/include/v8.h index 320a9ebae2..762ba474a1 100644 --- a/include/v8.h +++ b/include/v8.h @@ -4665,7 +4665,7 @@ class V8_EXPORT SharedArrayBuffer : public Object { private: void* allocation_base_; size_t allocation_length_; - ArrayBuffer::Allocator::Allocator::AllocationMode allocation_mode_; + ArrayBuffer::Allocator::AllocationMode allocation_mode_; void* data_; size_t byte_length_;