Skip to content

Commit d7c1ad8

Browse files
author
Julian LALU
committed
Improve hashmap
1 parent ed154c6 commit d7c1ad8

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

interface/core/containers/hashset.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ namespace hud
3636
* Constructs the slot by perfectly forwarding arguments to the base storage type constructor.
3737
* Enabled only if storage_type is constructible with the given arguments.
3838
*
39-
* @tparam type_t Variadic types forwarded to storage_type.
39+
* @tparam types_t Variadic types forwarded to storage_type.
4040
* @param values Arguments to forward to storage_type's constructor.
4141
*/
42-
template<typename... type_t>
43-
requires(hud::is_constructible_v<storage_type, type_t...>)
44-
constexpr explicit slot(type_t &&...values) noexcept
45-
: storage_type(hud::forward<type_t>(values)...)
42+
template<typename... types_t>
43+
requires(hud::is_constructible_v<storage_type, types_t...>)
44+
constexpr explicit slot(types_t &&...values) noexcept
45+
: storage_type(hud::forward<types_t>(values)...)
4646
{
4747
}
4848

0 commit comments

Comments
 (0)