summaryrefslogtreecommitdiffstats
path: root/src/gui
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-01-21 00:41:34 +0100
committerDavid Robillard <d@drobilla.net>2018-01-21 00:56:50 +0100
commit329f498d901f9be9c0c820749850f5277a17df5d (patch)
treefbe6362b6c0a6fbf88749711d55480c694e1081f /src/gui
parent44f7ad5222d824d81dc743045d5887418847e74e (diff)
downloadingen-329f498d901f9be9c0c820749850f5277a17df5d.tar.gz
ingen-329f498d901f9be9c0c820749850f5277a17df5d.tar.bz2
ingen-329f498d901f9be9c0c820749850f5277a17df5d.zip
Use C++ style includes for standard language headers
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/PortMenu.cpp2
-rw-r--r--src/gui/Style.hpp3
-rw-r--r--src/gui/rgba.hpp2
3 files changed, 3 insertions, 4 deletions
diff --git a/src/gui/PortMenu.cpp b/src/gui/PortMenu.cpp
index 4cff55f7..c6ec8fa1 100644
--- a/src/gui/PortMenu.cpp
+++ b/src/gui/PortMenu.cpp
@@ -14,7 +14,7 @@
along with Ingen. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <math.h>
+#include <cmath>
#include "ingen/Interface.hpp"
#include "ingen/client/GraphModel.hpp"
diff --git a/src/gui/Style.hpp b/src/gui/Style.hpp
index f92d884e..8e628a3d 100644
--- a/src/gui/Style.hpp
+++ b/src/gui/Style.hpp
@@ -17,8 +17,7 @@
#ifndef INGEN_GUI_STYLE_HPP
#define INGEN_GUI_STYLE_HPP
-#include <stdint.h>
-
+#include <cstdint>
#include <string>
namespace Ingen { namespace Client { class PortModel; } }
diff --git a/src/gui/rgba.hpp b/src/gui/rgba.hpp
index 8648aece..dae3f179 100644
--- a/src/gui/rgba.hpp
+++ b/src/gui/rgba.hpp
@@ -17,7 +17,7 @@
#ifndef INGEN_GUI_RGBA_HPP
#define INGEN_GUI_RGBA_HPP
-#include <math.h>
+#include <cmath>
namespace Ingen {
namespace GUI {