diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2025-02-23 23:12:40 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2025-02-24 18:22:39 +0200 |
commit | 643af7f2e79382e4534bb423ecb09d613c3664de (patch) | |
tree | 0927575f5227258989b8d45b0f3189a11a245c2d /src/ipa/libipa/awb_grey.cpp | |
parent | afd87c342c96e5f6f1c378105d07a1d90802194c (diff) |
libipa: awb: Tidy up includes
Drop unneeded headers and add missing ones.
The yaml_parser.h header is dropped from awb_grey.h as the classes it
provides are only used in virtual functions defined by the base class,
so any required definitions are guaranteed to be available already.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Stefan Klug <stefan.klug@ideasonboard.com>
Diffstat (limited to 'src/ipa/libipa/awb_grey.cpp')
-rw-r--r-- | src/ipa/libipa/awb_grey.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipa/libipa/awb_grey.cpp b/src/ipa/libipa/awb_grey.cpp index 17b85984..0e6c5220 100644 --- a/src/ipa/libipa/awb_grey.cpp +++ b/src/ipa/libipa/awb_grey.cpp @@ -7,7 +7,7 @@ #include "awb_grey.h" -#include <cmath> +#include <algorithm> #include <libcamera/base/log.h> #include <libcamera/control_ids.h> |