Skip to content

Commit

Permalink
the patch was still incomplete
Browse files Browse the repository at this point in the history
  • Loading branch information
lrineau committed Oct 8, 2024
1 parent cab1117 commit 546d130
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CGAL_Core/include/CGAL/CORE/MemoryPool.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ void* MemoryPool< T, nObjects >::allocate(std::size_t) {
}

template< class T, int nObjects >
void MemoryPool< T, nObjects >::free(void* t) {
void MemoryPool< T, nObjects >::free BOOST_PREVENT_MACRO_SUBSTITUTION (void* t) {
CGAL_assertion(t != 0);
if (t == 0) return; // for safety
if(blocks.empty()){
Expand Down

0 comments on commit 546d130

Please sign in to comment.