libcamera: Add missing <stdint.h> include to internal/yaml_parser.h

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@gmail.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
This commit is contained in:
Sergei Trofimovich
2024-08-04 21:55:44 +01:00
committed by Laurent Pinchart
parent d021d29822
commit b6369e7df2
+1
View File
@@ -10,6 +10,7 @@
#include <iterator>
#include <map>
#include <optional>
#include <stdint.h>
#include <string>
#include <vector>