From ac35a5fad1f6f028e2da49927333374f5d3efee8 Mon Sep 17 00:00:00 2001 From: Martchus Date: Sat, 18 Nov 2023 22:32:04 +0100 Subject: [PATCH] Fix a few Doxygen warnings --- io/buffersearch.h | 2 +- misc/flagenumclass.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/io/buffersearch.h b/io/buffersearch.h index 427ffe4..75943f2 100644 --- a/io/buffersearch.h +++ b/io/buffersearch.h @@ -60,7 +60,7 @@ inline void BufferSearch::operator()(std::string_view buffer) } /*! - * \brief Processes the specified \a buffer which is a shared array with fixed \tp bufferCapacity. Invokes the callback according to the remarks mentioned in the class documentation. + * \brief Processes the specified \a buffer which is a shared array with fixed \tparam bufferCapacity. Invokes the callback according to the remarks mentioned in the class documentation. */ template inline void BufferSearch::operator()(std::shared_ptr> buffer, std::size_t bufferSize) diff --git a/misc/flagenumclass.h b/misc/flagenumclass.h index 9078dc5..7cdd60e 100644 --- a/misc/flagenumclass.h +++ b/misc/flagenumclass.h @@ -6,14 +6,14 @@ namespace CppUtilities { /*! - * \brief The IsFlagEnumClass class is used to decide whether to enable operations for flag enums for \tp T. + * \brief The IsFlagEnumClass class is used to decide whether to enable operations for flag enums for \tparam T. * \remarks This class is still experimental and might be changed or removed in future minior releases. */ template struct IsFlagEnumClass : public Traits::Bool {}; // clang-format off /*! - * \def The CPP_UTILITIES_MARK_FLAG_ENUM_CLASS macro enables flag enum operators for \a EnumClassType within namespace \a Namespace. + * \brief The \def CPP_UTILITIES_MARK_FLAG_ENUM_CLASS macro enables flag enum operators for \a EnumClassType within namespace \a Namespace. * \remarks * - Must be used outside a namespace. * - This macro is still experimental and might be changed or removed in future minior releases.