Bug 1613985 - Use default for equivalent-to-default constructors/destructors in tools. r=mstange

Depends on D66013

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Simon Giesecke 2020-03-10 08:48:24 +00:00
Родитель 33bc0a178b
Коммит fcd4872d20
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -57,7 +57,7 @@ class ProfilerMarkerPayload {
UniqueProfilerBacktrace aStack = nullptr)
: mCommonProps{aStartTime, aEndTime, std::move(aStack), aInnerWindowID} {}
virtual ~ProfilerMarkerPayload() {}
virtual ~ProfilerMarkerPayload() = default;
// Compute the number of bytes needed to serialize the `DeserializerTag` and
// payload, including in the no-payload (nullptr) case.