summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-12-16 15:44:14 +0100
committerDavid Robillard <d@drobilla.net>2017-12-16 17:51:21 +0100
commit2db4b9d3eeff03fff8a75c7fe500fa56da143efc (patch)
tree4b5e15dffc6725d9c1098bf5f9e00038742d2d00
parentb7341fdcb0f10025b725172d7b95ba5b1294b9d3 (diff)
downloadingen-2db4b9d3eeff03fff8a75c7fe500fa56da143efc.tar.gz
ingen-2db4b9d3eeff03fff8a75c7fe500fa56da143efc.tar.bz2
ingen-2db4b9d3eeff03fff8a75c7fe500fa56da143efc.zip
Clean up includes
-rw-r--r--ingen/Interface.hpp1
-rw-r--r--src/gui/ConnectWindow.cpp3
-rw-r--r--src/server/events/CreateGraph.hpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/ingen/Interface.hpp b/ingen/Interface.hpp
index e396872e..f83cd6f2 100644
--- a/ingen/Interface.hpp
+++ b/ingen/Interface.hpp
@@ -21,7 +21,6 @@
#ifndef INGEN_INTERFACE_HPP
#define INGEN_INTERFACE_HPP
-#include <list>
#include <string>
#include "ingen/Resource.hpp"
diff --git a/src/gui/ConnectWindow.cpp b/src/gui/ConnectWindow.cpp
index f719cdc1..0b4ea298 100644
--- a/src/gui/ConnectWindow.cpp
+++ b/src/gui/ConnectWindow.cpp
@@ -14,8 +14,7 @@
along with Ingen. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <stdlib.h>
-
+#include <cstdlib>
#include <limits>
#include <sstream>
#include <string>
diff --git a/src/server/events/CreateGraph.hpp b/src/server/events/CreateGraph.hpp
index 9225ad9d..564d553b 100644
--- a/src/server/events/CreateGraph.hpp
+++ b/src/server/events/CreateGraph.hpp
@@ -17,6 +17,8 @@
#ifndef INGEN_EVENTS_CREATEGRAPH_HPP
#define INGEN_EVENTS_CREATEGRAPH_HPP
+#include <list>
+
#include "ingen/Resource.hpp"
#include "CompiledGraph.hpp"