Skip to content

Commit

Permalink
fix: Add missing #include <cstdint>
Browse files Browse the repository at this point in the history
  • Loading branch information
ccvca committed Oct 10, 2023
1 parent b9e0325 commit 3c83314
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions Configuration/Configuration.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#include <optional>
#include <string>
#include <vector>
#include <cstdint>

namespace Configuration {
struct Encryption_t {
Expand Down
1 change: 1 addition & 0 deletions UmatiServerLib/BindHelper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include "BindableMember.hpp"
#include "BindableMemberValue.hpp"
#include "Util.hpp"
#include <cstdint>

open62541Cpp::UA_NodeId resolveBrowsePath(UA_Server *pServer, const open62541Cpp::UA_BrowsePath &brPath);

Expand Down
4 changes: 3 additions & 1 deletion UmatiServerLib/StateMachine.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@
#include <open62541/server.h>

#include <Open62541Cpp/UA_NodeId.hpp>
#include <list>

#include "../OpcUaTypes/LocalizedText.hpp"

#include <list>
#include <cstdint>

namespace UmatiServerLib {
/**
* @brief Read a state machine from the address space
Expand Down

0 comments on commit 3c83314

Please sign in to comment.