Skip to content

Commit

Permalink
[ci] Fix invalid code noticed by clang 19
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Nov 16, 2024
1 parent 9a1d359 commit 4868f4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/avnd/binding/max/dict.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ struct dict_storage
auto& get_input(avnd::field_index<NField>)
{
constexpr std::size_t NPred
= dict_parameter_outputs_introspection<T>::template field_index_to_index(
= dict_parameter_outputs_introspection<T>::field_index_to_index(
avnd::field_index<NField>{});
return get<NPred>(inputs.handles);
}
Expand All @@ -80,7 +80,7 @@ struct dict_storage
auto& get_output(avnd::field_index<NField>)
{
constexpr std::size_t NPred
= dict_parameter_outputs_introspection<T>::template field_index_to_index(
= dict_parameter_outputs_introspection<T>::field_index_to_index(
avnd::field_index<NField>{});
return get<NPred>(outputs.handles);
}
Expand Down

0 comments on commit 4868f4d

Please sign in to comment.