Skip to content

Commit

Permalink
Explicitly include <cstdint> (#387)
Browse files Browse the repository at this point in the history
This PR includes <cstdint> explicitly in headers.
---------

Signed-off-by: Christopher Fore <[email protected]>
Co-authored-by: Martin Weismann <[email protected]>
Co-authored-by: gangatp <[email protected]>
Co-authored-by: Vijai Kumar S <[email protected]>
Co-authored-by: Vijai Kumar S <[email protected]>
  • Loading branch information
5 people authored Sep 1, 2024
1 parent 21f793d commit 5abad20
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ jobs:
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./build/Test_CPP_Bindings_filtered.info
fail_ci_if_error: true # optional (default = false)
fail_ci_if_error: false # optional (default = false)
verbose: true # optional (default = false)

build-windows-release:
Expand Down
1 change: 1 addition & 0 deletions Source/Common/Platform/NMR_EncryptionHeader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include "Common/Platform/NMR_ExportStream.h"

#include "Common/NMR_Architecture_Utils.h"
#include <cstdint>
#include <cstring>

#define LIB3MF_MAXENCRYPTIONHEADERSIZE (1UL << 31)
Expand Down
2 changes: 2 additions & 0 deletions Source/Common/Platform/NMR_ImportStream_Unique_Memory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ This is a platform independent class for keeping data in a memory stream that ow
#include "Common/NMR_Exception.h"
#include "Common/NMR_Exception_Windows.h"

#include <cstdint>

namespace NMR {

CImportStream_Unique_Memory::CImportStream_Unique_Memory()
Expand Down

0 comments on commit 5abad20

Please sign in to comment.