cista icon indicating copy to clipboard operation
cista copied to clipboard

smart pointer for deserializing and storing values from different aligned and unaligned sources

Open felixguendling opened this issue 2 years ago • 0 comments

std::variant<
  unique_ptr<T> /* aus T const& angelegt und kopiert */,
  T const* /* pointer aus bereits alignedtem speicher gespeichert */,
  aligned_buf /* unaligned pointer musste kopiert werden */
>

felixguendling avatar Apr 04 '22 15:04 felixguendling