summaryrefslogtreecommitdiff
path: root/include/libcamera/geometry.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/geometry.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/geometry.h')
-rw-r--r--include/libcamera/geometry.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/libcamera/geometry.h b/include/libcamera/geometry.h
index fa7ae7bc..713f71c1 100644
--- a/include/libcamera/geometry.h
+++ b/include/libcamera/geometry.h
@@ -5,8 +5,7 @@
* geometry.h - Geometry-related classes
*/
-#ifndef __LIBCAMERA_GEOMETRY_H__
-#define __LIBCAMERA_GEOMETRY_H__
+#pragma once
#include <algorithm>
#include <string>
@@ -293,5 +292,3 @@ static inline bool operator!=(const Rectangle &lhs, const Rectangle &rhs)
}
} /* namespace libcamera */
-
-#endif /* __LIBCAMERA_GEOMETRY_H__ */