summaryrefslogtreecommitdiffstats
path: root/src/JackDriver.cpp
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/JackDriver.cpp
parent7bbcd8405b0e9d04c74be1f13d1b54f3f72e7c7d (diff)
downloadpatchage-762cfaa66a7be2fe61722d1d2a1679af65bd1f9a.tar.gz
patchage-762cfaa66a7be2fe61722d1d2a1679af65bd1f9a.tar.bz2
patchage-762cfaa66a7be2fe61722d1d2a1679af65bd1f9a.zip
Clean up includes
Diffstat (limited to 'src/JackDriver.cpp')
-rw-r--r--src/JackDriver.cpp21
1 files changed, 11 insertions, 10 deletions
diff --git a/src/JackDriver.cpp b/src/JackDriver.cpp
index 5daedae..9455a2a 100644
--- a/src/JackDriver.cpp
+++ b/src/JackDriver.cpp
@@ -14,28 +14,29 @@
* along with Patchage. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <cassert>
-#include <cstring>
-#include <set>
-#include <string>
-
-#include <boost/format.hpp>
-
-#include <jack/jack.h>
-#include <jack/statistics.h>
-
#include "JackDriver.hpp"
+
#include "Patchage.hpp"
#include "PatchageCanvas.hpp"
#include "PatchageEvent.hpp"
#include "PatchageModule.hpp"
#include "Queue.hpp"
#include "patchage_config.h"
+
#ifdef HAVE_JACK_METADATA
#include <jack/metadata.h>
#include "jackey.h"
#endif
+#include <boost/format.hpp>
+#include <jack/jack.h>
+#include <jack/statistics.h>
+
+#include <cassert>
+#include <cstring>
+#include <set>
+#include <string>
+
using std::endl;
using std::string;
using boost::format;