From 9d44551404fe0e68d4eaf087ac6fdd549434e98a Mon Sep 17 00:00:00 2001 From: Jean-Michel Hautbois Date: Mon, 28 Jun 2021 21:58:15 +0200 Subject: libcamera: pipeline_handler: Hide implementation detail comment from doxygen The comment is a implementation detail and does not belong to API documentation. Move it inside the function. Signed-off-by: Jean-Michel Hautbois Reviewed-by: Paul Elder Reviewed-by: Kieran Bingham --- src/libcamera/pipeline_handler.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/libcamera/pipeline_handler.cpp b/src/libcamera/pipeline_handler.cpp index f626eddd..0ed172dc 100644 --- a/src/libcamera/pipeline_handler.cpp +++ b/src/libcamera/pipeline_handler.cpp @@ -707,14 +707,15 @@ void PipelineHandlerFactory::registerType(PipelineHandlerFactory *factory) /** * \brief Retrieve the list of all pipeline handler factories - * - * The static factories map is defined inside the function to ensures it gets - * initialized on first use, without any dependency on link order. - * * \return the list of pipeline handler factories */ std::vector &PipelineHandlerFactory::factories() { + /* + * The static factories map is defined inside the function to ensure + * it gets initialized on first use, without any dependency on + * link order. + */ static std::vector factories; return factories; } -- cgit v1.2.1