diff options
author | Sadie Powell <sadie@witchery.services> | 2020-01-19 15:41:23 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-01-19 15:41:23 +0000 |
commit | 62483525bb81a62b72539a3bda9d1a9b425b482c (patch) | |
tree | 3980d86af08dbee99e8f7255b82ffd216eb9c1b6 /include | |
parent | 5d1ff2971a988f4a0b683b286eb598e6cfdcb1ce (diff) |
Move DeleteZero to stdalgo::delete_zero.
Diffstat (limited to 'include')
-rw-r--r-- | include/stdalgo.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/stdalgo.h b/include/stdalgo.h index 683b2655b..578618132 100644 --- a/include/stdalgo.h +++ b/include/stdalgo.h @@ -182,6 +182,17 @@ namespace stdalgo std::for_each(cont.begin(), cont.end(), defaultdeleter<T>()); } + /** Deletes a object and zeroes the memory location that pointed to it. + * @param pr A reference to the pointer that contains the object to delete. + */ + template<typename T> + void delete_zero(T*& pr) + { + T* p = pr; + pr = NULL; + delete p; + } + /** * Remove an element from a container * @param cont Container to remove the element from |