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 broken include due to auto-formatting

Signed-off-by: Steffen Vogel <steffen.vogel@opal-rt.com>
This commit is contained in:
Steffen Vogel 2023-09-07 14:21:24 +02:00
parent 82131fb79d
commit 0c3b10d2e1
7 changed files with 15 additions and 12 deletions

View file

@ -7,15 +7,15 @@
#pragma once
#ifdef WITH_CONFIG
#include <libconfig.h>
#endif
#include <jansson.h>
#include <villas/node/config.hpp>
#include <villas/sample.hpp>
#ifdef WITH_CONFIG
#include <libconfig.h>
#endif
namespace villas {
namespace node {

View file

@ -7,16 +7,16 @@
#pragma once
#ifdef IBVERBS_FOUND
#include <infiniband/verbs.h>
#endif // IBVERBS_FOUND
#include <cstddef>
#include <cstdint>
#include <villas/node/config.hpp>
#include <villas/node/memory_type.hpp>
#ifdef IBVERBS_FOUND
#include <infiniband/verbs.h>
#endif // IBVERBS_FOUND
namespace villas {
namespace node {
namespace memory {
@ -52,7 +52,7 @@ struct Allocation {
};
};
// Initilialize memory subsystem
// Initialize memory subsystem
int init(int hugepages) __attribute__((warn_unused_result));
int lock(size_t lock);

View file

@ -8,6 +8,7 @@
#pragma once
#include <rdma/rdma_cma.h>
#include <villas/format.hpp>
#include <villas/pool.hpp>
#include <villas/queue_signalled.h>

View file

@ -7,6 +7,7 @@
#pragma once
#include <libwebsockets.h>
#include <spdlog/fmt/ostr.h>
#include <villas/buffer.hpp>

View file

@ -15,6 +15,8 @@
#include <cstdint>
#include <villas/signal_type.hpp>
namespace villas {
namespace node {

View file

@ -11,8 +11,6 @@
#include <signal.h>
#include <unistd.h>
#include <libwebsockets.h>
#include <villas/exceptions.hpp>
#include <villas/node_compat.hpp>
#include <villas/nodes/websocket.hpp>

View file

@ -7,9 +7,10 @@
#include <iostream>
#include <graphviz/gvcommon.h>
#include <graphviz/types.h>
#include <graphviz/gvcommon.h>
#include <villas/super_node.hpp>
#include <villas/tool.hpp>
#include <villas/utils.hpp>