From 62c64be4d3bf8d9db0e386b4c73c53956a47ea99 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Mon, 28 Mar 2022 09:18:23 -0700 Subject: [PATCH] Apply clang-tidy fixes for modernize-use-equals-default in InputFile.cpp (NFC) --- llvm/lib/DebugInfo/PDB/Native/InputFile.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/lib/DebugInfo/PDB/Native/InputFile.cpp b/llvm/lib/DebugInfo/PDB/Native/InputFile.cpp index 74d7d9b2711b..637e0ee294f7 100644 --- a/llvm/lib/DebugInfo/PDB/Native/InputFile.cpp +++ b/llvm/lib/DebugInfo/PDB/Native/InputFile.cpp @@ -31,8 +31,8 @@ using namespace llvm::codeview; using namespace llvm::object; using namespace llvm::pdb; -InputFile::InputFile() {} -InputFile::~InputFile() {} +InputFile::InputFile() = default; +InputFile::~InputFile() = default; Expected llvm::pdb::getModuleDebugStream(PDBFile &File, StringRef &ModuleName,