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;