Skip to content

Commit 621f6b4

Browse files
committed
FIXUP: Fix QtWebEngine build on Windows
Fix build with MSVC 17.12. Change-Id: I55531ec8ee2f257d32d47c80603c7a549b02b013 Reviewed-on: https://codereview.qt-project.org/c/qt/qtwebengine-chromium/+/603989 Reviewed-by: Allan Sandfeld Jensen <[email protected]> Reviewed-by: Kaloyan Chehlarski <[email protected]>
1 parent ccecfdb commit 621f6b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chromium/v8/src/snapshot/embedded/embedded-data.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,8 @@ EmbeddedData EmbeddedData::NewFromIsolate(Isolate* isolate) {
237237
Builtins* builtins = isolate->builtins();
238238

239239
// Store instruction stream lengths and offsets.
240-
std::vector<struct LayoutDescription> layout_descriptions(kTableSize);
241-
std::vector<struct BuiltinLookupEntry> offset_descriptions(kTableSize);
240+
std::vector<struct EmbeddedData::LayoutDescription> layout_descriptions(kTableSize);
241+
std::vector<struct EmbeddedData::BuiltinLookupEntry> offset_descriptions(kTableSize);
242242

243243
bool saw_unsafe_builtin = false;
244244
uint32_t raw_code_size = 0;

0 commit comments

Comments
 (0)