From c105f1c925fa465263a0099a3a632b04bd1692fa Mon Sep 17 00:00:00 2001 From: daniel-k Date: Thu, 21 Dec 2017 21:16:58 +0100 Subject: [PATCH] lib/ip: remove unused includes and replace pragma by include guard --- fpga/include/villas/fpga/ip.hpp | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/fpga/include/villas/fpga/ip.hpp b/fpga/include/villas/fpga/ip.hpp index 0929bd3b8..0e0001a34 100644 --- a/fpga/include/villas/fpga/ip.hpp +++ b/fpga/include/villas/fpga/ip.hpp @@ -28,18 +28,10 @@ * @{ */ -#pragma once - -#include -#include - -#include "common.h" - -#include "log.h" -#include "utils.h" +#ifndef VILLAS_IP_HPP +#define VILLAS_IP_HPP #include "fpga/vlnv.hpp" - #include "plugin.hpp" #include @@ -161,3 +153,5 @@ private: } // namespace ip } // namespace fpga } // namespace villas + +#endif // VILLAS_IP_HPP