Skip to content

Commit 186e880

Browse files
committed
fix(style): Format code with clang-format
Signed-off-by: Steffen Vogel <steffen.vogel@opal-rt.com>
1 parent c9902cb commit 186e880

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

common/include/villas/kernel/devices/ip_device.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class IpDevice : public PlatformDevice {
2525
private:
2626
IpDevice() = delete;
2727
IpDevice(const fs::path valid_path) //! Dont allow unvalidated paths
28-
: PlatformDevice(valid_path) {};
28+
: PlatformDevice(valid_path){};
2929

3030
public:
3131
size_t addr() const;

common/include/villas/kernel/devices/linux_driver.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ class LinuxDriver : public Driver {
3333
public:
3434
LinuxDriver(const fs::path path)
3535
: LinuxDriver(path, path / fs::path(BIND_DEFAULT),
36-
path / fs::path(UNBIND_DEFAULT)) {};
36+
path / fs::path(UNBIND_DEFAULT)){};
3737

3838
LinuxDriver(const fs::path path, const fs::path bind_path,
3939
const fs::path unbind_path)
40-
: path(path), bind_path(bind_path), unbind_path(unbind_path) {};
40+
: path(path), bind_path(bind_path), unbind_path(unbind_path){};
4141

4242
public:
4343
void attach(const Device &device) const override;

common/include/villas/kernel/devices/platform_device.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class PlatformDevice : public Device {
2929
public:
3030
PlatformDevice(const fs::path path)
3131
: PlatformDevice(path, fs::path(PROBE_DEFAULT),
32-
path / fs::path(OVERRIDE_DEFAULT)) {};
32+
path / fs::path(OVERRIDE_DEFAULT)){};
3333

3434
PlatformDevice(const fs::path path, const fs::path probe_path,
3535
const fs::path override_path)

0 commit comments

Comments
 (0)