We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3cd0e4 commit c52293eCopy full SHA for c52293e
1 file changed
lib/PhasarLLVM/DataFlowSolver/IfdsIde/Problems/ExtendedTaintAnalysis/AbstractMemoryLocationFactory.cpp
@@ -43,8 +43,8 @@ auto AbstractMemoryLocationFactoryBase::Allocator::Block::create(
43
}
44
45
void AbstractMemoryLocationFactoryBase::Allocator::Block::destroy(Block *Blck) {
46
- ::operator delete (Blck,
47
- std::align_val_t{alignof(AbstractMemoryLocationImpl)});
+ ::operator delete[](Blck,
+ std::align_val_t{alignof(AbstractMemoryLocationImpl)});
48
49
50
AbstractMemoryLocationFactoryBase::Allocator::Allocator(
0 commit comments