mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-09 00:07:57 +03:00
More libstdc++ changes landed upstream which shuffled some things around again, so <cstdint> and <stdint.h> have to be explicitly included. Signed-off-by: Kostadin Shishmanov <kostadinshishmanov@protonmail.com> Part-of: https://github.com/gentoo/gentoo/pull/42415 Closes: https://github.com/gentoo/gentoo/pull/42415 Signed-off-by: Sam James <sam@gentoo.org>
28 lines
789 B
Diff
28 lines
789 B
Diff
https://android-review.googlesource.com/c/platform/system/libbase/+/3555906
|
|
https://android-review.googlesource.com/c/platform/system/libziparchive/+/3649395
|
|
|
|
diff --git a/vendor/libbase/hex.cpp b/vendor/libbase/hex.cpp
|
|
index a4b7715..85ba671 100644
|
|
--- a/vendor/libbase/hex.cpp
|
|
+++ b/vendor/libbase/hex.cpp
|
|
@@ -18,6 +18,8 @@
|
|
|
|
#include "android-base/logging.h"
|
|
|
|
+#include <stdint.h>
|
|
+
|
|
namespace android {
|
|
namespace base {
|
|
|
|
diff --git a/vendor/libziparchive/include/ziparchive/zip_writer.h b/vendor/libziparchive/include/ziparchive/zip_writer.h
|
|
index 268e8b6..aca7f4e 100644
|
|
--- a/vendor/libziparchive/include/ziparchive/zip_writer.h
|
|
+++ b/vendor/libziparchive/include/ziparchive/zip_writer.h
|
|
@@ -16,6 +16,7 @@
|
|
|
|
#pragma once
|
|
|
|
+#include <cstdint>
|
|
#include <cstdio>
|
|
#include <ctime>
|