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:
Brian Smith 2015-01-07 23:28:51 -08:00
parent 48fd2c4ff3
commit 79817be8c6
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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.