[CodeGen] Remove redundant string initialization (NFC)

Identified with readability-redundant-string-init.
This commit is contained in:
Kazu Hirata 2022-01-01 09:14:23 -08:00
parent 491b4e1faa
commit 683e6ee7d0
1 changed files with 1 additions and 1 deletions
clang/lib/CodeGen

View File

@ -311,7 +311,7 @@ private:
const TargetInfo &Target;
std::unique_ptr<CGCXXABI> ABI;
llvm::LLVMContext &VMContext;
std::string ModuleNameHash = "";
std::string ModuleNameHash;
std::unique_ptr<CodeGenTBAA> TBAA;