summaryrefslogtreecommitdiff
path: root/include/libcamera/controls.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:17:35 +0000
commit0a64cf8b7645a90b289f270ad585e8f703350099 (patch)
tree612ac65edaa6ed0dbcee4b8ed1cca26b5978c9eb /include/libcamera/controls.h
parent8212671ee74ec89c1422807e4bc80a0fb24ff9c2 (diff)
libcamera: 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 'include/libcamera/controls.h')
-rw-r--r--include/libcamera/controls.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/libcamera/controls.h b/include/libcamera/controls.h
index af851b46..665bcac1 100644
--- a/include/libcamera/controls.h
+++ b/include/libcamera/controls.h
@@ -5,8 +5,7 @@
* controls.h - Control handling
*/
-#ifndef __LIBCAMERA_CONTROLS_H__
-#define __LIBCAMERA_CONTROLS_H__
+#pragma once
#include <assert.h>
#include <set>
@@ -421,5 +420,3 @@ private:
};
} /* namespace libcamera */
-
-#endif /* __LIBCAMERA_CONTROLS_H__ */