From b5250d3448428b33ae52b8ee574993a2f0f03352 Mon Sep 17 00:00:00 2001 From: Angel Garcia Gomez Date: Tue, 20 Oct 2015 12:52:55 +0000 Subject: Apply modernize-use-default to clang. Summary: Replace empty bodies of default constructors and destructors with '= default'. Reviewers: bkramer, klimek Subscribers: klimek, alexfh, cfe-commits Differential Revision: http://reviews.llvm.org/D13890 llvm-svn: 250822 --- clang/lib/Frontend/Rewrite/FrontendActions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'clang/lib/Frontend/Rewrite/FrontendActions.cpp') diff --git a/clang/lib/Frontend/Rewrite/FrontendActions.cpp b/clang/lib/Frontend/Rewrite/FrontendActions.cpp index 8cf8adf37ed..d3a22ce9adc 100644 --- a/clang/lib/Frontend/Rewrite/FrontendActions.cpp +++ b/clang/lib/Frontend/Rewrite/FrontendActions.cpp @@ -38,7 +38,7 @@ HTMLPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { } FixItAction::FixItAction() {} -FixItAction::~FixItAction() {} +FixItAction::~FixItAction() = default; std::unique_ptr FixItAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { -- cgit v1.2.3