gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit 25d85521fdcb1c3147372637393a9e98e5d4cfd8
parent fe2a7dddc9323947c3ad4486a2892baace1ce01c
Author: dsp56300 <87139854+dsp56300@users.noreply.github.com>
Date:   Mon,  4 Oct 2021 10:01:42 +0200

Merge pull request #26 from really-need-an-api-key/fix-cstddef-for-gcc11

Explicitly include `cstddef`
Diffstat:
Msource/synthLib/audiobuffer.h | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/source/synthLib/audiobuffer.h b/source/synthLib/audiobuffer.h @@ -1,4 +1,5 @@ #pragma once +#include <cstddef> #include <vector> namespace synthLib