cam: 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>
This commit is contained in:
Kieran Bingham
2021-11-23 17:23:07 +00:00
parent 0382fcb22b
commit 2c72ca70e2
10 changed files with 20 additions and 40 deletions
+2 -4
View File
@@ -4,8 +4,8 @@
*
* camera_session.h - Camera capture session
*/
#ifndef __CAM_CAMERA_SESSION_H__
#define __CAM_CAMERA_SESSION_H__
#pragma once
#include <memory>
#include <stdint.h>
@@ -74,5 +74,3 @@ private:
std::unique_ptr<libcamera::FrameBufferAllocator> allocator_;
std::vector<std::unique_ptr<libcamera::Request>> requests_;
};
#endif /* __CAM_CAMERA_SESSION_H__ */