From 20da2b943ac8f6d58c24e101f1984a068ac5ed1d Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Sun, 6 Jan 2019 11:18:44 +0100 Subject: [PATCH] datapath.hpp: Only include necessary headers and formatting --- include/datapath.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/datapath.hpp b/include/datapath.hpp index c2ff38b..f4ac8d7 100644 --- a/include/datapath.hpp +++ b/include/datapath.hpp @@ -17,15 +17,15 @@ along with this program. If not, see . */ #pragma once +#include #include "error.hpp" #include "iserver.hpp" #include "isocket.hpp" -#include "itask.hpp" #include "permissions.hpp" -#include namespace datapath { datapath::error connect(std::shared_ptr& socket, std::string path); - datapath::error host(std::shared_ptr& server, std::string path, datapath::permissions permissions, size_t max_clients); -} + datapath::error host(std::shared_ptr& server, std::string path, + datapath::permissions permissions, size_t max_clients); +} // namespace datapath