summaryrefslogtreecommitdiff
path: root/include/libcamera/transform.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/transform.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/transform.h')
-rw-r--r--include/libcamera/transform.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/libcamera/transform.h b/include/libcamera/transform.h
index 71b43da7..2e76b940 100644
--- a/include/libcamera/transform.h
+++ b/include/libcamera/transform.h
@@ -5,8 +5,7 @@
* transform.h - 2D plane transforms
*/
-#ifndef __LIBCAMERA_TRANSFORM_H__
-#define __LIBCAMERA_TRANSFORM_H__
+#pragma once
#include <string>
@@ -74,5 +73,3 @@ Transform transformFromRotation(int angle, bool *success = nullptr);
const char *transformToString(Transform t);
} /* namespace libcamera */
-
-#endif /* __LIBCAMERA_TRANSFORM_H__ */