diff options
author | Rudi Heitbaum <rudi@heitbaum.com> | 2023-04-09 15:45:29 +0000 |
---|---|---|
committer | Bernd Kuhls <bernd.kuhls@t-online.de> | 2023-05-21 22:14:34 +0200 |
commit | b8d95130ceaab17aedf5fd8ad27d7c8e01ee91b7 (patch) | |
tree | 7d4e9f99a8a1da7cab8cc41ca44c12f9e6adba9b | |
parent | 49311d12708d564973edff173f086cf6dbb9db7a (diff) |
DRMHelpers: include missing <cstdint>
gcc 13 moved some includes around and as a result <cstdint> is no longer transitively
included [1]. Explicitly include it for uint{32,64}_t.
[1] https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes
Signed-off-by: Rudi Heitbaum <rudi@heitbaum.com>
-rw-r--r-- | xbmc/utils/DRMHelpers.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xbmc/utils/DRMHelpers.h b/xbmc/utils/DRMHelpers.h index ea45823179..dcc7f502f3 100644 --- a/xbmc/utils/DRMHelpers.h +++ b/xbmc/utils/DRMHelpers.h @@ -8,6 +8,7 @@ #pragma once +#include <cstdint> #include <string> namespace DRMHELPERS |