Skip to content

Commit

Permalink
Add workaround for clang 16
Browse files Browse the repository at this point in the history
  • Loading branch information
gracicot committed Apr 27, 2024
1 parent 7313350 commit 369d96b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions include/kangaru/detail/source.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,14 @@ namespace kangaru {
return KANGARU5_FWD(source).provide();
}
};

namespace niebloid {
inline constexpr auto provide = detail::source::provide_function{};
}
}

inline namespace neibloid {
inline constexpr auto provide = detail::source::provide_function{};
inline namespace niebloid {
using namespace detail::source::niebloid;
}

template<typename Source, typename T>
Expand Down

0 comments on commit 369d96b

Please sign in to comment.