зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1653231
- Pass const char* argument by value. r=njn
Depends on D83916 Differential Revision: https://phabricator.services.mozilla.com/D83917
This commit is contained in:
Родитель
3ed45c6191
Коммит
e8b19b4dda
|
@ -887,9 +887,9 @@ struct PrefHasher {
|
|||
using Key = UniquePtr<Pref>;
|
||||
using Lookup = const char*;
|
||||
|
||||
static HashNumber hash(const Lookup& aLookup) { return HashString(aLookup); }
|
||||
static HashNumber hash(const Lookup aLookup) { return HashString(aLookup); }
|
||||
|
||||
static bool match(const Key& aKey, const Lookup& aLookup) {
|
||||
static bool match(const Key& aKey, const Lookup aLookup) {
|
||||
if (!aLookup || !aKey->Name()) {
|
||||
return false;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче