Skip to content

Commit ac35a5f

Browse files
committed
Fix a few Doxygen warnings
1 parent 762131a commit ac35a5f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

io/buffersearch.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ inline void BufferSearch::operator()(std::string_view buffer)
6060
}
6161

6262
/*!
63-
* \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.
63+
* \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.
6464
*/
6565
template <std::size_t bufferCapacity>
6666
inline void BufferSearch::operator()(std::shared_ptr<std::array<std::string_view::value_type, bufferCapacity>> buffer, std::size_t bufferSize)

misc/flagenumclass.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
namespace CppUtilities {
77

88
/*!
9-
* \brief The IsFlagEnumClass class is used to decide whether to enable operations for flag enums for \tp T.
9+
* \brief The IsFlagEnumClass class is used to decide whether to enable operations for flag enums for \tparam T.
1010
* \remarks This class is still experimental and might be changed or removed in future minior releases.
1111
*/
1212
template <typename T> struct IsFlagEnumClass : public Traits::Bool<false> {};
1313

1414
// clang-format off
1515
/*!
16-
* \def The CPP_UTILITIES_MARK_FLAG_ENUM_CLASS macro enables flag enum operators for \a EnumClassType within namespace \a Namespace.
16+
* \brief The \def CPP_UTILITIES_MARK_FLAG_ENUM_CLASS macro enables flag enum operators for \a EnumClassType within namespace \a Namespace.
1717
* \remarks
1818
* - Must be used outside a namespace.
1919
* - This macro is still experimental and might be changed or removed in future minior releases.

0 commit comments

Comments
 (0)