Bug 1613985 - Use default for equivalent-to-default constructors/destructors in caps. r=smaug

Depends on D62569

Differential Revision: https://phabricator.services.mozilla.com/D62570

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Simon Giesecke 2020-02-12 13:39:13 +00:00
Родитель 244019e207
Коммит 1e5c4a7749
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -16,7 +16,7 @@ namespace mozilla {
class OriginAttributes : public dom::OriginAttributesDictionary {
public:
OriginAttributes() {}
OriginAttributes() = default;
explicit OriginAttributes(bool aInIsolatedMozBrowser) {
mInIsolatedMozBrowser = aInIsolatedMozBrowser;
@ -126,7 +126,7 @@ class OriginAttributesPattern : public dom::OriginAttributesPatternDictionary {
// if (!pattern.Init(aJSONString)) {
// ... // handle failure.
// }
OriginAttributesPattern() {}
OriginAttributesPattern() = default;
explicit OriginAttributesPattern(
const OriginAttributesPatternDictionary& aOther)