mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Backed out changeset 2661dabba074 (bug 858680)
This commit is contained in:
parent
afee86321e
commit
fbd59dbee6
@ -8170,24 +8170,20 @@ struct QuotaClient::MultipleMaintenanceInfo final
|
||||
: MaintenanceInfoBase(aGroup, aOrigin, aPersistenceType)
|
||||
, mDatabasePaths(Move(aDatabasePaths))
|
||||
{
|
||||
#ifdef DEBUG
|
||||
MOZ_ASSERT(!mDatabasePaths.IsEmpty());
|
||||
for (const nsString& databasePath : mDatabasePaths) {
|
||||
MOZ_ASSERT(!databasePath.IsEmpty());
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
MultipleMaintenanceInfo(MultipleMaintenanceInfo&& aOther)
|
||||
: MaintenanceInfoBase(Move(aOther))
|
||||
, mDatabasePaths(Move(aOther.mDatabasePaths))
|
||||
{
|
||||
#ifdef DEBUG
|
||||
MOZ_ASSERT(!mDatabasePaths.IsEmpty());
|
||||
for (const nsString& databasePath : mDatabasePaths) {
|
||||
MOZ_ASSERT(!databasePath.IsEmpty());
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
MultipleMaintenanceInfo(const MultipleMaintenanceInfo& aOther) = delete;
|
||||
|
Loading…
Reference in New Issue
Block a user