From 297fbc511cc4213167afd7230347b5645a23bf61 Mon Sep 17 00:00:00 2001 From: Pascal Bauer Date: Wed, 4 Dec 2024 18:57:20 +0100 Subject: [PATCH] fix formatting Signed-off-by: Pascal Bauer --- common/include/villas/kernel/devices/platform_device.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/include/villas/kernel/devices/platform_device.hpp b/common/include/villas/kernel/devices/platform_device.hpp index 673694387..57c3ec915 100644 --- a/common/include/villas/kernel/devices/platform_device.hpp +++ b/common/include/villas/kernel/devices/platform_device.hpp @@ -29,13 +29,13 @@ private: public: PlatformDevice(const std::filesystem::path path) : PlatformDevice(path, std::filesystem::path(PROBE_DEFAULT), - path / std::filesystem::path(OVERRIDE_DEFAULT)) {}; + path / std::filesystem::path(OVERRIDE_DEFAULT)){}; PlatformDevice(const std::filesystem::path path, const std::filesystem::path probe_path, const std::filesystem::path override_path) : m_path(path), m_probe_path(probe_path), - m_override_path(override_path) {}; + m_override_path(override_path){}; // Implement device interface std::optional> driver() const override;