summaryrefslogtreecommitdiff
path: root/src/libcamera/camera_sensor.cpp
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-04-18 18:39:57 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-04-19 13:38:14 +0300
commit1ba441cae6cf2355f6986b066b696111bec29bd7 (patch)
tree74084de32c4868809ae6ff7fa1f9814cd152f729 /src/libcamera/camera_sensor.cpp
parent0af0fb9ca9eae903cc533a05e2282ec36cc3ce55 (diff)
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 <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Diffstat (limited to 'src/libcamera/camera_sensor.cpp')
-rw-r--r--src/libcamera/camera_sensor.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libcamera/camera_sensor.cpp b/src/libcamera/camera_sensor.cpp
index 52bd8f6f..8f2eab56 100644
--- a/src/libcamera/camera_sensor.cpp
+++ b/src/libcamera/camera_sensor.cpp
@@ -5,13 +5,14 @@
* camera_sensor.cpp - A camera sensor
*/
+#include "camera_sensor.h"
+
#include <algorithm>
#include <float.h>
#include <iomanip>
#include <limits.h>
#include <math.h>
-#include "camera_sensor.h"
#include "formats.h"
#include "v4l2_subdevice.h"