android: 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:
@@ -4,8 +4,8 @@
|
||||
*
|
||||
* camera_stream.h - Camera HAL stream
|
||||
*/
|
||||
#ifndef __ANDROID_CAMERA_STREAM_H__
|
||||
#define __ANDROID_CAMERA_STREAM_H__
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <condition_variable>
|
||||
#include <memory>
|
||||
@@ -179,5 +179,3 @@ private:
|
||||
|
||||
std::unique_ptr<PostProcessorWorker> worker_;
|
||||
};
|
||||
|
||||
#endif /* __ANDROID_CAMERA_STREAM__ */
|
||||
|
||||
Reference in New Issue
Block a user