-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[qtwebengine] Fix error C2275 and C2672 in MSVC (#38895)
- Loading branch information
1 parent
bb73c2e
commit 91ce506
Showing
5 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/src/3rdparty/chromium/v8/src/compiler/backend/instruction-selector.cc b/src/3rdparty/chromium/v8/src/compiler/backend/instruction-selector.cc | ||
index ce06089..61534f1 100644 | ||
--- a/src/3rdparty/chromium/v8/src/compiler/backend/instruction-selector.cc | ||
+++ b/src/3rdparty/chromium/v8/src/compiler/backend/instruction-selector.cc | ||
@@ -875,7 +875,7 @@ class InstructionSelectorT<Adapter>::CachedStateValuesBuilder { | ||
InstructionSelectorT<Adapter>::CachedStateValues* Build(Zone* zone) { | ||
DCHECK(CanCache()); | ||
DCHECK(values_->nested_count() == nested_start_); | ||
- return zone->New<InstructionSelectorT<Adapter>::CachedStateValues>( | ||
+ return zone->New<typename InstructionSelectorT<Adapter>::CachedStateValues>( | ||
zone, values_, values_start_, inputs_, inputs_start_); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters