Skip to content

Commit 1398e93

Browse files
committed
Add curly braces to explicit call the ctor of SmallDenseMap
This is needed, as older gcc versions do not consider the member declaration as an explicit ctor call.
1 parent b15adfb commit 1398e93

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)