Skip to content

Commit

Permalink
Fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian LALU committed Jan 14, 2025
1 parent d38c494 commit ea96270
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions interface/core/containers/hashmap.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ namespace hud
{
using element_type = element_t;
using const_element_type = const element_type;
using key_type = element_type::first_type;
using value_type = element_type::second_type;
using key_type = typename element_type::first_type;
using value_type = typename element_type::second_type;

[[nodiscard]] static constexpr key_type &get_key(element_type &pair) noexcept
{
Expand Down

0 comments on commit ea96270

Please sign in to comment.