From ba92d5447fb621d4a8d288c342d757b7e7bb3dd1 Mon Sep 17 00:00:00 2001 From: Pascal Bauer Date: Mon, 17 Jun 2024 13:18:39 +0000 Subject: [PATCH] add linebrakes Signed-off-by: Pascal Bauer --- fpga/lib/core.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fpga/lib/core.cpp b/fpga/lib/core.cpp index 1d7eecac1..6530d8311 100644 --- a/fpga/lib/core.cpp +++ b/fpga/lib/core.cpp @@ -54,7 +54,7 @@ std::list CoreFactory::parseVLNV(json_t *json_ips) { allIps.push_back({vlnv, ipName}); } return allIps; - } +} std::list CoreFactory::reorderIps(std::list allIps) { @@ -86,6 +86,7 @@ CoreFactory::reorderIps(std::list allIps) { return orderedIps; } + std::list> CoreFactory::configureIps(std::list orderedIps, json_t *json_ips, Card *card) { @@ -241,6 +242,7 @@ CoreFactory::configureIps(std::list orderedIps, json_t *json_ips, return configuredIps; } + void CoreFactory::initIps(std::list> configuredIps, Card *card) { auto loggerStatic = CoreFactory::getStaticLogger();