Apply clang-tidy fixes for modernize-use-equals-default in InputFile.cpp (NFC)

This commit is contained in:
Kazu Hirata 2022-03-28 09:18:23 -07:00
parent 3bd15c03c6
commit 62c64be4d3

View File

@ -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<ModuleDebugStreamRef>
llvm::pdb::getModuleDebugStream(PDBFile &File, StringRef &ModuleName,