diff options
author | David Robillard <d@drobilla.net> | 2017-12-16 15:44:14 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-12-16 17:51:21 +0100 |
commit | 2db4b9d3eeff03fff8a75c7fe500fa56da143efc (patch) | |
tree | 4b5e15dffc6725d9c1098bf5f9e00038742d2d00 /src | |
parent | b7341fdcb0f10025b725172d7b95ba5b1294b9d3 (diff) | |
download | ingen-2db4b9d3eeff03fff8a75c7fe500fa56da143efc.tar.gz ingen-2db4b9d3eeff03fff8a75c7fe500fa56da143efc.tar.bz2 ingen-2db4b9d3eeff03fff8a75c7fe500fa56da143efc.zip |
Clean up includes
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/ConnectWindow.cpp | 3 | ||||
-rw-r--r-- | src/server/events/CreateGraph.hpp | 2 |
2 files changed, 3 insertions, 2 deletions
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" |