ohmtech-rdi / eurorack-blocks

Software to Hardware Prototyping for Eurorack using C++, Max/Gen~ or Faust
Other
314 stars 21 forks source link

gcc 12 build error with size_t #477

Closed ohmtech-rdi closed 1 year ago

ohmtech-rdi commented 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>.

Instead, we should probably use std::size_t.