diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/almalloc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/almalloc.h b/common/almalloc.h index 4bf3a281..d649716c 100644 --- a/common/almalloc.h +++ b/common/almalloc.h @@ -85,7 +85,7 @@ inline void destroy(T first, const T end) { while(first != end) { - destroy_at(std::addressof(*first)); + al::destroy_at(std::addressof(*first)); ++first; } } @@ -96,7 +96,7 @@ inline T destroy_n(T first, N count) if(count != 0) { do { - destroy_at(std::addressof(*first)); + al::destroy_at(std::addressof(*first)); ++first; } while(--count); } |