1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

fix formatting

Signed-off-by: Pascal Bauer <pascal.bauer@rwth-aachen.de>
This commit is contained in:
Pascal Bauer 2024-12-04 18:57:20 +01:00 committed by Niklas Eiling
parent 64c8ddcbb4
commit e99351f96b

View file

@ -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<std::unique_ptr<Driver>> driver() const override;