mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-25 17:45:06 +03:00
libcamera: base: 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:
parent
0a64cf8b76
commit
0701f756b9
17 changed files with 33 additions and 68 deletions
|
@ -4,8 +4,8 @@
|
|||
*
|
||||
* thread.h - Thread support
|
||||
*/
|
||||
#ifndef __LIBCAMERA_BASE_THREAD_H__
|
||||
#define __LIBCAMERA_BASE_THREAD_H__
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include <mutex>
|
||||
|
@ -74,5 +74,3 @@ private:
|
|||
};
|
||||
|
||||
} /* namespace libcamera */
|
||||
|
||||
#endif /* __LIBCAMERA_BASE_THREAD_H__ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue