Skip to content

Commit a136741

Browse files
authored
Merge pull request #508 from secure-software-engineering/f-FixesExplicitCtorCallForGCC
Add curly braces to explicit call the ctor of SmallDenseMap
2 parents 066b28f + a34e35f commit a136741

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/phasar/Utils/LLVMShorthands.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ class ModulesToSlotTracker {
241241
private:
242242
static inline llvm::SmallDenseMap<const llvm::Module *,
243243
std::unique_ptr<llvm::ModuleSlotTracker>, 2>
244-
MToST; // NOLINT
244+
MToST{};
245245

246246
static void updateMSTForModule(const llvm::Module *Module);
247247
static void deleteMSTForModule(const llvm::Module *Module);

0 commit comments

Comments
 (0)