Bug 1156802 - Part 2: Remove all explicit move constructors, r=ehsan

This commit is contained in:
Michael Layzell 2015-09-03 10:51:42 -04:00
parent da3af84697
commit 1eaae658aa
7 changed files with 14 additions and 14 deletions

View File

@ -45,7 +45,7 @@ public:
: mParams(aOther.mParams) : mParams(aOther.mParams)
{} {}
explicit URLParams(const URLParams&& aOther) URLParams(const URLParams&& aOther)
: mParams(Move(aOther.mParams)) : mParams(Move(aOther.mParams))
{} {}

View File

@ -35,7 +35,7 @@ public:
mValue.emplace(aValue); mValue.emplace(aValue);
} }
explicit Nullable(Nullable<T>&& aOther) Nullable(Nullable<T>&& aOther)
: mValue(mozilla::Move(aOther.mValue)) : mValue(mozilla::Move(aOther.mValue))
{} {}

View File

@ -33,7 +33,7 @@ protected:
{ {
} }
explicit TypedArrayObjectStorage(TypedArrayObjectStorage&& aOther) TypedArrayObjectStorage(TypedArrayObjectStorage&& aOther)
: mTypedObj(aOther.mTypedObj), : mTypedObj(aOther.mTypedObj),
mWrappedObj(aOther.mWrappedObj) mWrappedObj(aOther.mWrappedObj)
{ {
@ -75,7 +75,7 @@ struct TypedArray_base : public TypedArrayObjectStorage {
{ {
} }
explicit TypedArray_base(TypedArray_base&& aOther) TypedArray_base(TypedArray_base&& aOther)
: TypedArrayObjectStorage(Move(aOther)), : TypedArrayObjectStorage(Move(aOther)),
mData(aOther.mData), mData(aOther.mData),
mLength(aOther.mLength), mLength(aOther.mLength),
@ -150,7 +150,7 @@ public:
: Base() : Base()
{} {}
explicit TypedArray(TypedArray&& aOther) TypedArray(TypedArray&& aOther)
: Base(Move(aOther)) : Base(Move(aOther))
{ {
} }
@ -204,7 +204,7 @@ public:
{ {
} }
explicit ArrayBufferView_base(ArrayBufferView_base&& aOther) ArrayBufferView_base(ArrayBufferView_base&& aOther)
: Base(Move(aOther)), : Base(Move(aOther)),
mType(aOther.mType) mType(aOther.mType)
{ {

View File

@ -705,7 +705,7 @@ class BackgroundCursorChild final
{ {
CachedResponse(); CachedResponse();
explicit CachedResponse(CachedResponse&& aOther); CachedResponse(CachedResponse&& aOther);
Key mKey; Key mKey;
Key mObjectKey; Key mObjectKey;

View File

@ -455,7 +455,7 @@ class ScriptCounts
inline ScriptCounts(); inline ScriptCounts();
inline explicit ScriptCounts(PCCountsVector&& jumpTargets); inline explicit ScriptCounts(PCCountsVector&& jumpTargets);
inline explicit ScriptCounts(ScriptCounts&& src); inline ScriptCounts(ScriptCounts&& src);
inline ~ScriptCounts(); inline ~ScriptCounts();
inline ScriptCounts& operator=(ScriptCounts&& src); inline ScriptCounts& operator=(ScriptCounts&& src);
@ -2363,7 +2363,7 @@ struct ScriptAndCounts
ScriptCounts scriptCounts; ScriptCounts scriptCounts;
inline explicit ScriptAndCounts(JSScript* script); inline explicit ScriptAndCounts(JSScript* script);
inline explicit ScriptAndCounts(ScriptAndCounts&& sac); inline ScriptAndCounts(ScriptAndCounts&& sac);
const PCCounts* maybeGetPCCounts(jsbytecode* pc) const { const PCCounts* maybeGetPCCounts(jsbytecode* pc) const {
return scriptCounts.maybeGetPCCounts(script->pcToOffset(pc)); return scriptCounts.maybeGetPCCounts(script->pcToOffset(pc));

View File

@ -96,8 +96,8 @@ public:
} }
/* Move constructor. */ /* Move constructor. */
explicit Scoped(Scoped&& aOther Scoped(Scoped&& aOther
MOZ_GUARD_OBJECT_NOTIFIER_PARAM) MOZ_GUARD_OBJECT_NOTIFIER_PARAM)
: mValue(Move(aOther.mValue)) : mValue(Move(aOther.mValue))
{ {
MOZ_GUARD_OBJECT_NOTIFIER_INIT; MOZ_GUARD_OBJECT_NOTIFIER_INIT;
@ -209,8 +209,8 @@ struct name : public mozilla::Scoped<Traits<Type> > \
: Super(aRhs \ : Super(aRhs \
MOZ_GUARD_OBJECT_NOTIFIER_PARAM_TO_PARENT) \ MOZ_GUARD_OBJECT_NOTIFIER_PARAM_TO_PARENT) \
{} \ {} \
explicit name(name&& aRhs \ name(name&& aRhs \
MOZ_GUARD_OBJECT_NOTIFIER_PARAM) \ MOZ_GUARD_OBJECT_NOTIFIER_PARAM) \
: Super(Move(aRhs) \ : Super(Move(aRhs) \
MOZ_GUARD_OBJECT_NOTIFIER_PARAM_TO_PARENT) \ MOZ_GUARD_OBJECT_NOTIFIER_PARAM_TO_PARENT) \
{} \ {} \

View File

@ -2143,7 +2143,7 @@ public:
FallibleTArray() {} FallibleTArray() {}
explicit FallibleTArray(size_type aCapacity) : base_type(aCapacity) {} explicit FallibleTArray(size_type aCapacity) : base_type(aCapacity) {}
explicit FallibleTArray(const FallibleTArray<E>& aOther) : base_type(aOther) {} explicit FallibleTArray(const FallibleTArray<E>& aOther) : base_type(aOther) {}
explicit FallibleTArray(FallibleTArray<E>&& aOther) FallibleTArray(FallibleTArray<E>&& aOther)
: base_type(mozilla::Move(aOther)) : base_type(mozilla::Move(aOther))
{ {
} }