diff options
author | David Robillard <d@drobilla.net> | 2019-12-29 20:02:36 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-12-29 20:02:36 -0500 |
commit | 762cfaa66a7be2fe61722d1d2a1679af65bd1f9a (patch) | |
tree | 7d60aeef03703f305ed672ed2ce44395a38f1bf3 /src/PatchageEvent.hpp | |
parent | 7bbcd8405b0e9d04c74be1f13d1b54f3f72e7c7d (diff) | |
download | patchage-762cfaa66a7be2fe61722d1d2a1679af65bd1f9a.tar.gz patchage-762cfaa66a7be2fe61722d1d2a1679af65bd1f9a.tar.bz2 patchage-762cfaa66a7be2fe61722d1d2a1679af65bd1f9a.zip |
Clean up includes
Diffstat (limited to 'src/PatchageEvent.hpp')
-rw-r--r-- | src/PatchageEvent.hpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/PatchageEvent.hpp b/src/PatchageEvent.hpp index 899f77f..4fe0bf3 100644 --- a/src/PatchageEvent.hpp +++ b/src/PatchageEvent.hpp @@ -17,19 +17,19 @@ #ifndef PATCHAGE_PATCHAGEEVENT_HPP #define PATCHAGE_PATCHAGEEVENT_HPP -#include <cstring> - #include "patchage_config.h" +#include "PatchagePort.hpp" +#include "PortID.hpp" + #ifdef PATCHAGE_LIBJACK - #include <jack/jack.h> + #include <jack/jack.h> #endif #ifdef HAVE_ALSA - #include <alsa/asoundlib.h> + #include <alsa/asoundlib.h> #endif -#include "PatchagePort.hpp" -#include "PortID.hpp" +#include <cstring> class Patchage; |