diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2019-10-23 14:31:13 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2019-10-23 17:39:39 +0300 |
commit | ca260d2f5337536e30d1b2501434bd2a93a3e72e (patch) | |
tree | 7a8af9ad83101ceaae165614c6ae525f4499086f /test/ipa/ipa_interface_test.cpp | |
parent | bb5f8cf4951fc5813d60ab806c57c5b5d713f38c (diff) |
libcamera: Standardise on C compatibility headers
Now that our usage of C compatibility header is documented, use them
consistently through the source code.
While at it, group the C and C++ include statements as defined in the
coding style, and fix a handful of #include ordering issues.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Diffstat (limited to 'test/ipa/ipa_interface_test.cpp')
-rw-r--r-- | test/ipa/ipa_interface_test.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/ipa/ipa_interface_test.cpp b/test/ipa/ipa_interface_test.cpp index 0bdeb167..cafc249b 100644 --- a/test/ipa/ipa_interface_test.cpp +++ b/test/ipa/ipa_interface_test.cpp @@ -6,13 +6,12 @@ */ #include <fcntl.h> +#include <iostream> #include <string.h> #include <sys/stat.h> #include <sys/types.h> #include <unistd.h> -#include <iostream> - #include <libcamera/event_dispatcher.h> #include <libcamera/event_notifier.h> #include <libcamera/timer.h> |