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 include order

Signed-off-by: Steffen Vogel <steffen.vogel@opal-rt.com>
This commit is contained in:
Steffen Vogel 2023-08-28 09:30:23 +02:00 committed by Steffen Vogel
parent 932ee22472
commit 4b433e20fd
2 changed files with 15 additions and 12 deletions

View file

@ -7,15 +7,6 @@
#pragma once
#include <villas/node/config.hpp>
#include <villas/node.hpp>
#include <villas/timing.hpp>
#include <villas/sample.hpp>
#include <villas/exceptions.hpp>
#include <villas/task.hpp>
#include <modbus/modbus.h>
#include <stdint.h>
#include <bit>
#include <vector>
@ -24,6 +15,15 @@
#include <algorithm>
#include <numeric>
#include <modbus/modbus.h>
#include <villas/node/config.hpp>
#include <villas/node.hpp>
#include <villas/timing.hpp>
#include <villas/sample.hpp>
#include <villas/exceptions.hpp>
#include <villas/task.hpp>
namespace villas {
namespace node {
namespace modbus {

View file

@ -35,6 +35,11 @@
* @license Apache 2.0
*********************************************************************************/
#include <atomic>
#include <chrono>
#include <fmt/format.h>
#include <villas/node_compat.hpp>
#include <villas/nodes/modbus.hpp>
#include <villas/utils.hpp>
@ -42,9 +47,7 @@
#include <villas/exceptions.hpp>
#include <villas/super_node.hpp>
#include <villas/exceptions.hpp>
#include <fmt/format.h>
#include <atomic>
#include <chrono>
using namespace villas;
using namespace villas::node;