Closed ohmtech-rdi closed 1 year ago
In include/erb/detail/DoubleBuffer.h (and probably other places), we use size_t but it is not defined, as we don't include <cstddef>.
include/erb/detail/DoubleBuffer.h
size_t
<cstddef>
Instead, we should probably use std::size_t.
std::size_t
In
include/erb/detail/DoubleBuffer.h
(and probably other places), we usesize_t
but it is not defined, as we don't include<cstddef>
.Instead, we should probably use
std::size_t
.