forked from mirrors/gecko-dev
Bug 1658571 - Add a missing "explicit" in a test.
MANUAL PUSH: unit test fix in CLOSED TREE
This commit is contained in:
parent
1840888b31
commit
3aa40e5fb9
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ struct C : public SupportsWeakPtr {
|
||||||
};
|
};
|
||||||
|
|
||||||
struct HasWeakPtrToC {
|
struct HasWeakPtrToC {
|
||||||
HasWeakPtrToC(C* c) : mPtr(c) {}
|
explicit HasWeakPtrToC(C* c) : mPtr(c) {}
|
||||||
|
|
||||||
MainThreadWeakPtr<C> mPtr;
|
MainThreadWeakPtr<C> mPtr;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue