From 76be047f749cc68cb25ef302c4ba6def8e03530b Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Thu, 24 Jul 2025 13:52:05 +0300 Subject: [PATCH] apps: lc-compliance: Replace manual include guard with pragma once libcamera uses #pragma once for include guards. One manual guard crept in lc-compliance, replace it. Signed-off-by: Laurent Pinchart Reviewed-by: Daniel Scally Reviewed-by: Jacopo Mondi --- src/apps/lc-compliance/test_base.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/apps/lc-compliance/test_base.h b/src/apps/lc-compliance/test_base.h index 0f32e3c2..3451ef5f 100644 --- a/src/apps/lc-compliance/test_base.h +++ b/src/apps/lc-compliance/test_base.h @@ -4,9 +4,7 @@ * * Base definitions for tests */ - -#ifndef __LC_COMPLIANCE_TEST_BASE_H__ -#define __LC_COMPLIANCE_TEST_BASE_H__ +#pragma once #include @@ -20,5 +18,3 @@ protected: std::shared_ptr camera_; }; - -#endif /* __LC_COMPLIANCE_TEST_BASE_H__ */