Bug 1061061 - Fix more bad implicit constructors in misc. code; r=bsmedberg

This commit is contained in:
Ehsan Akhgari
2014-09-02 18:24:24 -04:00
parent 276d45afcd
commit d282557bca
23 changed files with 34 additions and 34 deletions

View File

@@ -105,7 +105,7 @@ public:
ValueObserverHashKey(const char *aPref, PrefChangedFunc aCallback) :
mPrefName(aPref), mCallback(aCallback) { }
ValueObserverHashKey(const ValueObserverHashKey *aOther) :
explicit ValueObserverHashKey(const ValueObserverHashKey *aOther) :
mPrefName(aOther->mPrefName), mCallback(aOther->mCallback)
{ }