Skip to content
Snippets Groups Projects

Fix: wrong include order

Merged Peter Albrecht requested to merge fix/include-ordering into master
1 file
+ 6
3
Compare changes
  • Side-by-side
  • Inline
@@ -24,13 +24,16 @@
#include <vector>
// clang-format off
#include <ArmarXCore/core/logging/LoggingUtil.h> // THIS NEEDS TO BE INCLUDED BEFORE EXPRESSION EXCEPTION
// For unknown reasons, this needs to be included before expression exception.
// TODO: investigate
#include <ArmarXCore/core/logging/LoggingUtil.h>
// Remaining, normal includes.
#include <ArmarXCore/core/util/PropagateConst.h>
#include <ArmarXCore/core/util/StringHelperTemplates.h>
#include <ArmarXCore/core/util/TripleBuffer.h>
#include <ArmarXCore/core/exceptions/local/ExpressionException.h>
// clang-format on
#include "../ControlTargets/ControlTargetBase.h"
#include "../Devices/ControlDevice.h"
Loading