summaryrefslogtreecommitdiff
path: root/src/gstreamer/gstlibcameraprovider.h
diff options
context:
space:
mode:
authorKieran Bingham <kieran.bingham@ideasonboard.com>2021-11-23 17:23:07 +0000
committerKieran Bingham <kieran.bingham@ideasonboard.com>2021-11-24 12:18:37 +0000
commitc296c91a71bcaeddd042f2d0535d56efc6c371a3 (patch)
treefdcb6419aba85dd3f804d5589151953044ad069e /src/gstreamer/gstlibcameraprovider.h
parent2c72ca70e2918b6bd919bcb2fa5b0fdb5f6d5165 (diff)
gstreamer: Convert to pragma once
Remove the verbose #ifndef/#define/#endif pattern for maintaining header idempotency, and replace it with a simple #pragma once. This simplifies the headers, and prevents redundant changes when header files get moved. Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jean-Michel Hautbois <jeanmichel.hautbois@ideasonboard.com>
Diffstat (limited to 'src/gstreamer/gstlibcameraprovider.h')
-rw-r--r--src/gstreamer/gstlibcameraprovider.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/gstreamer/gstlibcameraprovider.h b/src/gstreamer/gstlibcameraprovider.h
index bdd19db8..aaceabf5 100644
--- a/src/gstreamer/gstlibcameraprovider.h
+++ b/src/gstreamer/gstlibcameraprovider.h
@@ -6,8 +6,7 @@
* gstlibcameraprovider.h - GStreamer Device Provider
*/
-#ifndef __GST_LIBCAMERA_PROVIDER_H__
-#define __GST_LIBCAMERA_PROVIDER_H__
+#pragma once
#include <gst/gst.h>
@@ -18,6 +17,3 @@ G_DECLARE_FINAL_TYPE(GstLibcameraProvider, gst_libcamera_provider,
GST_LIBCAMERA, PROVIDER, GstDeviceProvider)
G_END_DECLS
-
-#endif /* __GST_LIBCAMERA_PROVIDER_H__ */
-