Bug 1317973 - Replace default bodies of special member functions with = default; r=tnikkel

MozReview-Commit-ID: EV0tM3A26XY

--HG--
extra : rebase_source : 3941138180638f14d47c47672da0aad45a0ab301
This commit is contained in:
Sylvestre Ledru 2016-11-16 15:23:37 +01:00
parent ea79a3956e
commit 44b5e91069
2 changed files with 3 additions and 9 deletions

View File

@ -6398,13 +6398,9 @@ nsWindow::DispatchRestoreEventAccessible(void)
// nsChildWindow class
nsChildWindow::nsChildWindow()
{
}
nsChildWindow::nsChildWindow() = default;
nsChildWindow::~nsChildWindow()
{
}
nsChildWindow::~nsChildWindow() = default;
NS_IMETHODIMP_(void)
nsWindow::SetInputContext(const InputContext& aContext,

View File

@ -62,9 +62,7 @@ nsBaseDragService::nsBaseDragService()
{
}
nsBaseDragService::~nsBaseDragService()
{
}
nsBaseDragService::~nsBaseDragService() = default;
NS_IMPL_ISUPPORTS(nsBaseDragService, nsIDragService, nsIDragSession)