MCPcopy Create free account
hub / github.com/PX4/eigen / conditional_aligned_realloc

Function conditional_aligned_realloc

Eigen/src/Core/util/Memory.h:238–241  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

236}
237
238template<bool Align> inline void* conditional_aligned_realloc(void* ptr, std::size_t new_size, std::size_t old_size)
239{
240 return aligned_realloc(ptr, new_size, old_size);
241}
242
243template<> inline void* conditional_aligned_realloc<false>(void* ptr, std::size_t new_size, std::size_t)
244{

Callers

nothing calls this directly

Calls 1

aligned_reallocFunction · 0.85

Tested by

no test coverage detected