From 1ba441cae6cf2355f6986b066b696111bec29bd7 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Thu, 18 Apr 2019 18:39:57 +0300 Subject: libcamera: Include header related to source file first Include the header file corresponding to the source file in the very first position. This complies with the Google C++ coding style guideliens, and helps ensuring that the headers are self-contained. Three bugs are already caught by this change (missing includes or forward declarations) in device_enumerator.h, event_dispatcher_poll.h and pipeline_handler.h. Fix them. Signed-off-by: Laurent Pinchart Reviewed-by: Jacopo Mondi --- src/libcamera/media_object.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/libcamera/media_object.cpp') diff --git a/src/libcamera/media_object.cpp b/src/libcamera/media_object.cpp index bbb8fb64..8794ff45 100644 --- a/src/libcamera/media_object.cpp +++ b/src/libcamera/media_object.cpp @@ -5,6 +5,8 @@ * media_object.cpp - Media device objects: entities, pads and links */ +#include "media_object.h" + #include #include #include @@ -16,7 +18,6 @@ #include "log.h" #include "media_device.h" -#include "media_object.h" /** * \file media_object.h -- cgit v1.2.1