From e58b5fa39f1e4b6d86ebc40cdf17d7dc9030e661 Mon Sep 17 00:00:00 2001 From: Jacopo Mondi Date: Tue, 20 Apr 2021 11:34:35 +0200 Subject: libcamera: class: Drop 'klass' argument from documentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The LIBCAMERA_D_PTR() and LIBCAMERA_O_PTR() macros do not require an argument, but the version of the macro consumed by Doxygen does. Fix this by removing the klass parameter from both macros in their documentation version. Reviewed-by: Laurent Pinchart Reviewed-by: Niklas Söderlund Signed-off-by: Jacopo Mondi --- include/libcamera/class.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/libcamera/class.h b/include/libcamera/class.h index 466114ec..f384a488 100644 --- a/include/libcamera/class.h +++ b/include/libcamera/class.h @@ -48,8 +48,8 @@ public: \ #else #define LIBCAMERA_DECLARE_PRIVATE() #define LIBCAMERA_DECLARE_PUBLIC(klass) -#define LIBCAMERA_D_PTR(klass) -#define LIBCAMERA_O_PTR(klass) +#define LIBCAMERA_D_PTR() +#define LIBCAMERA_O_PTR() #endif class Extensible -- cgit v1.2.1