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

chore: formatting

Signed-off-by: Pascal Bauer <pascal.bauer@rwth-aachen.de>
This commit is contained in:
Pascal Bauer 2025-02-07 13:28:13 +01:00 committed by Niklas Eiling
parent 229e1ad12c
commit f9e97750fb

View file

@ -10,8 +10,8 @@
#include <memory>
#include <villas/kernel/vfio_device.hpp>
#include <villas/kernel/devices/linux_driver.hpp>
#include <villas/kernel/vfio_device.hpp>
namespace villas {
namespace kernel {
@ -25,11 +25,11 @@ public:
private:
DeviceConnection(std::shared_ptr<kernel::vfio::Device> vfio_device)
: logger(villas::Log::get("DeviceConnection")),
vfio_device(vfio_device){};
vfio_device(vfio_device) {};
public:
static DeviceConnection
from(const villas::kernel::devices::Device& device,
from(const villas::kernel::devices::Device &device,
std::shared_ptr<kernel::vfio::Container> vfio_container) {
auto logger = villas::Log::get("Builder: DeviceConnection");