Attention needed from John Sasinowski, Matt Thiffault and Owners Override
Petr Hosek has uploaded the change for review
Petr Hosek would like Owners Override to review this change.
Commit message
[camera-gym] Add a missing <cstdint> include
libc++ recently removed a transitive include of <cstdint> from <tuple>
which caused this code to fail to compile because it uses uint32_t
without including <cstdint>.
Change-Id: I27173574b43c5811fb0a92105604767f9607e603
Change diff
diff --git a/src/camera/bin/camera-gym/screen_util.h b/src/camera/bin/camera-gym/screen_util.h
index cb16883..7fced40 100644
--- a/src/camera/bin/camera-gym/screen_util.h
+++ b/src/camera/bin/camera-gym/screen_util.h
@@ -4,6 +4,7 @@
#ifndef SRC_CAMERA_BIN_CAMERA_GYM_SCREEN_UTIL_H_
#define SRC_CAMERA_BIN_CAMERA_GYM_SCREEN_UTIL_H_
+#include <cstdint>
#include <tuple>
namespace screen_util {
Change information
Files:
- M src/camera/bin/camera-gym/screen_util.h
Change size: XS
Delta: 1 file changed, 1 insertion(+), 0 deletions(-)
Open in GerritRelated details
Attention is currently required from:
- John Sasinowski
- Matt Thiffault
- Owners Override
Submit Requirements:
- Code-Review
- Review-Enforcement
Gerrit-MessageType: newchange
Gerrit-Project: fuchsia
Gerrit-Branch: main
Gerrit-Change-Id: I27173574b43c5811fb0a92105604767f9607e603
Gerrit-Change-Number: 1029973
Gerrit-PatchSet: 1
You received this message because you are subscribed to the Google Groups "owners-override" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
.