Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A collection of updates and fixes #2294

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Small linux fix
Pencilcaseman committed Sep 2, 2022
commit 60ed4d8d4246399b9b3c86b3729af503b69ed1fb
5 changes: 5 additions & 0 deletions include/cinder/audio/audio.h
Original file line number Diff line number Diff line change
@@ -23,6 +23,11 @@

#pragma once

// Fix a compile error where "linux" is defined
#if defined(linux)
#undef linux
#endif

// general
#include "cinder/audio/Buffer.h"
#include "cinder/audio/Context.h"