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:
Simon Giesecke 2020-07-20 07:58:58 +00:00
Родитель 3ed45c6191
Коммит e8b19b4dda
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

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