summaryrefslogtreecommitdiffstats
path: root/raul/Socket.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'raul/Socket.hpp')
-rw-r--r--raul/Socket.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/raul/Socket.hpp b/raul/Socket.hpp
index fed58dd..7da4388 100644
--- a/raul/Socket.hpp
+++ b/raul/Socket.hpp
@@ -17,21 +17,21 @@
#ifndef RAUL_SOCKET_HPP
#define RAUL_SOCKET_HPP
-#include <memory>
-#include <string>
+#include "raul/Noncopyable.hpp"
-#include <errno.h>
#include <netdb.h>
#include <netinet/in.h>
#include <poll.h>
-#include <stdint.h>
-#include <stdlib.h>
-#include <string.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <unistd.h>
-#include "raul/Noncopyable.hpp"
+#include <cerrno>
+#include <cstdint>
+#include <cstdlib>
+#include <cstring>
+#include <memory>
+#include <string>
namespace Raul {