diff options
author | Milan Zamazal <mzamazal@redhat.com> | 2024-09-02 17:42:09 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2024-09-02 22:37:55 +0300 |
commit | 308f0ccf046d099a85841318551a7a784f56343b (patch) | |
tree | 3ffedf66d1054502b75ed20a15e51bda6271fe10 | |
parent | 6d0bf44c3209caeac3a38488c0d2eb0bf25624d7 (diff) |
libcamera: includes: Add missing includes
Let's add direct includes for classes currently included indirectly,
through other header files.
Signed-off-by: Milan Zamazal <mzamazal@redhat.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
-rw-r--r-- | include/libcamera/internal/request.h | 1 | ||||
-rw-r--r-- | include/libcamera/logging.h | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/include/libcamera/internal/request.h b/include/libcamera/internal/request.h index f5d98069..4e7d05b1 100644 --- a/include/libcamera/internal/request.h +++ b/include/libcamera/internal/request.h @@ -10,6 +10,7 @@ #include <chrono> #include <map> #include <memory> +#include <unordered_set> #include <libcamera/base/event_notifier.h> #include <libcamera/base/timer.h> diff --git a/include/libcamera/logging.h b/include/libcamera/logging.h index e334d87b..e1c6341c 100644 --- a/include/libcamera/logging.h +++ b/include/libcamera/logging.h @@ -7,6 +7,8 @@ #pragma once +#include <ostream> + namespace libcamera { enum LoggingTarget { |