Skip to content

Commit

Permalink
[ci] MSVC: try another fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier authored Jun 2, 2023
1 parent 2101558 commit c0b9134
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ossia/network/value/value.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,11 @@ OSSIA_EXPORT std::string value_to_pretty_string(const ossia::value& val);
OSSIA_EXPORT ossia::value parse_pretty_value(std::string_view str);

using value_map_element = std::pair<std::string, ossia::value>;
struct OSSIA_EXPORT value_map_type : std::vector<value_map_element>
struct value_map_type : std::vector<value_map_element>
{
using vector::vector;

OSSIA_EXPORT
ossia::value& operator[](std::string_view str) noexcept;
};

Expand Down

0 comments on commit c0b9134

Please sign in to comment.