summaryrefslogtreecommitdiffstats
path: root/src/PortID.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-12-29 20:02:36 -0500
committerDavid Robillard <d@drobilla.net>2019-12-29 20:02:36 -0500
commit762cfaa66a7be2fe61722d1d2a1679af65bd1f9a (patch)
tree7d60aeef03703f305ed672ed2ce44395a38f1bf3 /src/PortID.hpp
parent7bbcd8405b0e9d04c74be1f13d1b54f3f72e7c7d (diff)
downloadpatchage-762cfaa66a7be2fe61722d1d2a1679af65bd1f9a.tar.gz
patchage-762cfaa66a7be2fe61722d1d2a1679af65bd1f9a.tar.bz2
patchage-762cfaa66a7be2fe61722d1d2a1679af65bd1f9a.zip
Clean up includes
Diffstat (limited to 'src/PortID.hpp')
-rw-r--r--src/PortID.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/PortID.hpp b/src/PortID.hpp
index 3f916c0..f8e530f 100644
--- a/src/PortID.hpp
+++ b/src/PortID.hpp
@@ -17,11 +17,10 @@
#ifndef PATCHAGE_PORTID_HPP
#define PATCHAGE_PORTID_HPP
-#include <cstring>
-#include <iostream>
-
#include "patchage_config.h"
+#include "PatchagePort.hpp"
+
#ifdef PATCHAGE_LIBJACK
#include <jack/jack.h>
#endif
@@ -29,7 +28,8 @@
#include <alsa/asoundlib.h>
#endif
-#include "PatchagePort.hpp"
+#include <cstring>
+#include <iostream>
struct PortID {
PortID() : type(NULL_PORT_ID) { memset(&id, 0, sizeof(id)); }