[PATCH v2 2/2] libcamera: add missing <stdint.h> include to internal/yaml_parser.h
Laurent Pinchart
laurent.pinchart at ideasonboard.com
Sat Aug 10 00:04:36 CEST 2024
Hi Sergei,
Thank you for the patch.
On Sun, Aug 04, 2024 at 09:55:44PM +0100, Sergei Trofimovich wrote:
> Without the change the build fails on upcoming `gcc-15` as:
>
> In file included from ../src/libcamera/yaml_parser.cpp:8:
> ../include/libcamera/internal/yaml_parser.h:183:41: error: 'uint8_t' was not declared in this scope
> 183 | std::is_same_v<uint8_t, T> ||
> | ^~~~~~~
>
> Signed-off-by: Sergei Trofimovich <slyich at gmail.com>
> ---
> include/libcamera/internal/yaml_parser.h | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/include/libcamera/internal/yaml_parser.h b/include/libcamera/internal/yaml_parser.h
> index e38a2df9..f8e4f841 100644
> --- a/include/libcamera/internal/yaml_parser.h
> +++ b/include/libcamera/internal/yaml_parser.h
> @@ -7,6 +7,8 @@
>
> #pragma once
>
> +#include <stdint.h>
> +
> #include <iterator>
> #include <map>
> #include <optional>
checkstyle.py should have told you that the stdint.h header is not added
to the right location. I recommend running checkstyle.py automatically
with the post-commit git hook:
cp utils/hooks/post-commit .git/hooks/
With this, committing the patch will output the following:
------------------------------------------------------------------------------------------------------------
e76753cfe464565d13dc5bda41b69bbec0a2cbb6 libcamera: add missing <stdint.h> include to internal/yaml_parser.h
------------------------------------------------------------------------------------------------------------
--- include/libcamera/internal/yaml_parser.h
+++ include/libcamera/internal/yaml_parser.h
@@ -7,11 +7,10 @@
#pragma once
-#include <stdint.h>
-
#include <iterator>
#include <map>
#include <optional>
+#include <stdint.h>
#include <string>
#include <vector>
---
1 potential issue detected, please review
Successfully rebased and updated refs/heads/master.
I will fix this when applying the patch, no need for a v3.
Reviewed-by: Laurent Pinchart <laurent.pinchart at ideasonboard.com>
--
Regards,
Laurent Pinchart
More information about the libcamera-devel
mailing list