libcamera: internal: 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.

Tracepoints.h.in is not modified to use the pragma as it requires
self-inclusion.

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-24 12:18:17 +00:00
parent 0701f756b9
commit df131ad088
33 changed files with 64 additions and 132 deletions
@@ -4,8 +4,8 @@
*
* byte_stream_buffer.h - Byte stream buffer
*/
#ifndef __LIBCAMERA_INTERNAL_BYTE_STREAM_BUFFER_H__
#define __LIBCAMERA_INTERNAL_BYTE_STREAM_BUFFER_H__
#pragma once
#include <stddef.h>
#include <stdint.h>
@@ -85,5 +85,3 @@ private:
};
} /* namespace libcamera */
#endif /* __LIBCAMERA_INTERNAL_BYTE_STREAM_BUFFER_H__ */