Skip to content

Commit

Permalink
fix doxygen error
Browse files Browse the repository at this point in the history
  • Loading branch information
nkaaf committed Jun 10, 2023
1 parent d4a33c5 commit c8bc21f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/AbstractList.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ template <typename T> class AbstractList {
* @note If you use this list for non-primitive data types, check if the
* data type implements the != operator!
*
* @param list Second list to compare.
* @param other Second list to compare.
* @return true if the lists are equal; false otherwise.
*/
bool equals(AbstractList<T> &other) {
Expand Down Expand Up @@ -386,7 +386,8 @@ template <typename T> class AbstractList {
* @brief Opposite of '=='
* @see equals()
*
* @param list Other tist to compare
* @param list Other list to compare
* @return true if the lists are not equal; false otherwise.
*/
bool operator!=(AbstractList<T> &other) { return !(*this == other); }

Expand Down

0 comments on commit c8bc21f

Please sign in to comment.