From e9d5dc9237fb4eacc098153c39674cbd177ac444 Mon Sep 17 00:00:00 2001 From: cfeied Date: Sun, 8 Jan 2023 18:45:10 -0500 Subject: [PATCH] effect_granular_h problems fixed: 1. missing guard header 2. missing #include --- effect_granular.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/effect_granular.h b/effect_granular.h index 9a0afa096..28289afc7 100644 --- a/effect_granular.h +++ b/effect_granular.h @@ -20,7 +20,9 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ - +#ifndef effect_granular_h_ +#define effect_granular_h_ +#include #include "AudioStream.h" class AudioEffectGranular : public AudioStream @@ -63,3 +65,4 @@ class AudioEffectGranular : public AudioStream bool sample_req; }; +#endif \ No newline at end of file