Skip to content

Commit

Permalink
[ci] Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Jul 5, 2024
1 parent 64ee749 commit 6922ccc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions cmake/avendish.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ include(CMakeFindDependencyMacro)
set(CMAKE_INCLUDE_CURRENT_DIR 1)
set(CMAKE_CXX_STANDARD 23)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
set(AVND_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}")
set(AVND_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}" CACHE INTERNAL "")

Expand Down
3 changes: 2 additions & 1 deletion include/avnd/binding/max/atom_helpers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ inline t_symbol* get_atoms_sym() noexcept
{
return USESYM(atom);
}
template<std::integral T>
template <std::integral T>
requires(!std::is_same_v<T, char>)
inline t_symbol* get_atoms_sym() noexcept
{
return USESYM(long);
Expand Down

0 comments on commit 6922ccc

Please sign in to comment.