fix: use ::operator delete(void*)

This commit is contained in:
Andreas Fabri 2016-01-16 11:52:49 +01:00
parent 57531cc6b5
commit a27b6f453f
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ public:
CGAL_assertion(count == nObjects * blocks.size());
for(std::size_t i=0; i < blocks.size();i++){
:: delete blocks[i];
::operator delete(blocks[i]);
}
}