Skip to content

Commit

Permalink
docs(core): add missing parameter names
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
RiscadoA and github-actions[bot] committed Sep 28, 2023
1 parent 1a78416 commit 1fafaf5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/include/cubos/core/reflection/traits/dictionary.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ namespace cubos::core::reflection
/// @brief Compares two iterators.
/// @param other Other iterator.
/// @return Whether the iterators point to different entries.
bool operator!=(const Iterator&) const;
bool operator!=(const Iterator& /*other*/) const;

/// @brief Accesses the entry referenced by this iterator.
/// @note Aborts if out of bounds.
Expand Down Expand Up @@ -352,7 +352,7 @@ namespace cubos::core::reflection
/// @brief Compares two iterators.
/// @param other Other iterator.
/// @return Whether the iterators point to different entries.
bool operator!=(const Iterator&) const;
bool operator!=(const Iterator& /*other*/) const;

/// @brief Accesses the entry referenced by this iterator.
/// @note Aborts if out of bounds.
Expand Down

0 comments on commit 1fafaf5

Please sign in to comment.