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

add linebrakes

Signed-off-by: Pascal Bauer <pascal.bauer@rwth-aachen.de>
This commit is contained in:
Pascal Bauer 2024-06-17 13:18:39 +00:00 committed by Niklas Eiling
parent f79f7f4ca7
commit ba92d5447f

View file

@ -54,7 +54,7 @@ std::list<IpIdentifier> CoreFactory::parseVLNV(json_t *json_ips) {
allIps.push_back({vlnv, ipName});
}
return allIps;
}
}
std::list<IpIdentifier>
CoreFactory::reorderIps(std::list<IpIdentifier> allIps) {
@ -86,6 +86,7 @@ CoreFactory::reorderIps(std::list<IpIdentifier> allIps) {
return orderedIps;
}
std::list<std::shared_ptr<Core>>
CoreFactory::configureIps(std::list<IpIdentifier> orderedIps, json_t *json_ips,
Card *card) {
@ -241,6 +242,7 @@ CoreFactory::configureIps(std::list<IpIdentifier> orderedIps, json_t *json_ips,
return configuredIps;
}
void CoreFactory::initIps(std::list<std::shared_ptr<Core>> configuredIps,
Card *card) {
auto loggerStatic = CoreFactory::getStaticLogger();