Skip to content

Commit

Permalink
Merge pull request #1336 from bkuhls/Nexus
Browse files Browse the repository at this point in the history
[backport] include missing <cstdint> to support gcc-13
  • Loading branch information
CastagnaIT authored Jul 22, 2023
2 parents 862ce55 + e387e61 commit 7ecbdf8
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Iaes_decrypter.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

#include <bento4/Ap4Types.h>

#include <cstdint>
#include <string>

class IAESDecrypter
Expand All @@ -31,4 +32,4 @@ class IAESDecrypter

private:
std::string m_licenseKey;
};
};
1 change: 1 addition & 0 deletions src/SSD_dll.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

#pragma once

#include <cstdint>
#include <stdarg.h> // va_list, va_start, va_arg, va_end
#include <string_view>

Expand Down
1 change: 1 addition & 0 deletions src/utils/FileUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

#pragma once

#include <cstdint>
#include <string>
#include <string_view>

Expand Down
1 change: 1 addition & 0 deletions src/utils/PropertiesUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

#pragma once

#include <cstdint>
#include <map>
#include <string>
#include <utility>
Expand Down
1 change: 1 addition & 0 deletions src/utils/StringUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

#pragma once

#include <cstdint>
#include <string>
#include <string_view>
#include <vector>
Expand Down
1 change: 1 addition & 0 deletions src/utils/Utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

#pragma once

#include <cstdint>
#include <map>
#include <string>
#include <string_view>
Expand Down

0 comments on commit 7ecbdf8

Please sign in to comment.