libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
memory.hxx
Go to the documentation of this file.
1#pragma once
2
3// C++
4#include <cstring>
5#include <type_traits>
6
13namespace cosmos {
14
16
22template <typename T>
23void zero_object(T &obj) {
24 // this should only be done for non-C++ types
25 static_assert(std::is_trivial<T>::value == true);
26 std::memset(&obj, 0, sizeof(T));
27}
28
29} // end ns
void zero_object(T &obj)
Completely overwrites the given object with zeroes.
Definition memory.hxx:23