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
13
namespace
cosmos {
14
16
22
template
<
typename
T>
23
void
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
cosmos::zero_object
void zero_object(T &obj)
Completely overwrites the given object with zeroes.
Definition
memory.hxx:23
include
memory.hxx
Generated by
1.12.0