From 868d1b5378d6da52b2c3d46687017d7e5682099c Mon Sep 17 00:00:00 2001 From: Pascal Bauer Date: Fri, 30 Aug 2024 15:30:31 +0200 Subject: [PATCH] delete default comnstructor Signed-off-by: Pascal Bauer --- common/include/villas/kernel/devices/ip_device.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/common/include/villas/kernel/devices/ip_device.hpp b/common/include/villas/kernel/devices/ip_device.hpp index 0e9607d26..d7ac3f6c1 100644 --- a/common/include/villas/kernel/devices/ip_device.hpp +++ b/common/include/villas/kernel/devices/ip_device.hpp @@ -21,6 +21,7 @@ public: static bool is_path_valid(const std::filesystem::path unsafe_path); private: + IpDevice() = delete; IpDevice(const std::filesystem::path valid_path) : PlatformDevice(valid_path){}; public: