Skip to content

Commit

Permalink
[ci] Try to understand the GCC build failure
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Oct 9, 2023
1 parent bf32028 commit 79fc03d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion include/avnd/binding/max/atom_helpers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,18 @@ inline t_symbol* get_atoms_sym() noexcept
{
return USESYM(atom);
}
template<std::integral>
template<std::integral T>
inline t_symbol* get_atoms_sym() noexcept
{
return USESYM(long);
}
/*
template<>
inline t_symbol* get_atoms_sym<bool>() noexcept
{
return USESYM(long);
}
*/
template<>
inline t_symbol* get_atoms_sym<float>() noexcept
{
Expand Down

0 comments on commit 79fc03d

Please sign in to comment.