File tree Expand file tree Collapse file tree
interface/core/containers Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments