mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1119072, Part 6: Change a non-conforming usage of a const value type to a non-const value type, which VS2015 rightly rejects, r=bobowencode
--HG-- extra : rebase_source : 6c8c669d061eb3a107821b23829cd5d029e3eb2b
This commit is contained in:
parent
48fd2c4ff3
commit
79817be8c6
@ -5,3 +5,4 @@ https://hg.mozilla.org/mozilla-central/rev/365d1073111a
|
|||||||
https://hg.mozilla.org/mozilla-central/rev/0f763c186855
|
https://hg.mozilla.org/mozilla-central/rev/0f763c186855
|
||||||
https://hg.mozilla.org/mozilla-central/rev/d58c0218bb55
|
https://hg.mozilla.org/mozilla-central/rev/d58c0218bb55
|
||||||
https://bugzilla.mozilla.org/show_bug.cgi?id=1119072 (Part 3) vs2015-hashset-hashmap.patch
|
https://bugzilla.mozilla.org/show_bug.cgi?id=1119072 (Part 3) vs2015-hashset-hashmap.patch
|
||||||
|
https://bugzilla.mozilla.org/show_bug.cgi?id=1119072 (Part 6) vs2015-change-const-to-non-const-element.patch
|
||||||
|
@ -19,7 +19,7 @@ namespace sandbox {
|
|||||||
// This is a map of handle-types to names that we need to close in the
|
// This is a map of handle-types to names that we need to close in the
|
||||||
// target process. A null set means we need to close all handles of the
|
// target process. A null set means we need to close all handles of the
|
||||||
// given type.
|
// given type.
|
||||||
typedef std::map<const base::string16, std::set<const base::string16> >
|
typedef std::map<const base::string16, std::set<base::string16> >
|
||||||
HandleMap;
|
HandleMap;
|
||||||
|
|
||||||
// Type and set of corresponding handle names to close.
|
// Type and set of corresponding handle names to close.
|
||||||
|
Loading…
Reference in New Issue
Block a user