Skip to content

Commit

Permalink
fix: Add missing #include <cstdint> (#1161)
Browse files Browse the repository at this point in the history
  • Loading branch information
ccvca authored Oct 11, 2023
1 parent 520a15e commit 9bcb144
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 3 additions & 2 deletions Configuration/Configuration.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Copyright 2021 (c) Christian von Arnim, ISW University of Stuttgart (for umati and VDW e.V.)
* Copyright 2022 (c) Alen Galinec
* Copyright (c) 2021,2023 Christian von Arnim, ISW University of Stuttgart (for umati and VDW e.V.)
* Copyright (c) 2022 Alen Galinec
*/

#include <cstdint>
#include <optional>
#include <string>
#include <vector>
Expand Down
3 changes: 2 additions & 1 deletion UmatiServerLib/BindHelper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Copyright 2020-2021 (c) Christian von Arnim, ISW University of Stuttgart (for umati and VDW e.V.)
* Copyright (c) 2020-2021,2023 Christian von Arnim, ISW University of Stuttgart (for umati and VDW e.V.)
*/

#pragma once
Expand All @@ -11,6 +11,7 @@

#include <Open62541Cpp/UA_BrowsePath.hpp>
#include <Open62541Cpp/UA_NodeId.hpp>
#include <cstdint>
#include <iostream>
#include <refl.hpp>

Expand Down
3 changes: 2 additions & 1 deletion UmatiServerLib/StateMachine.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Copyright 2020-2021 (c) Christian von Arnim, ISW University of Stuttgart (for umati and VDW e.V.)
* Copyright (c) 2020-2021, 2023 Christian von Arnim, ISW University of Stuttgart (for umati and VDW e.V.)
*/

#pragma once

#include <open62541/server.h>

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

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

0 comments on commit 9bcb144

Please sign in to comment.