Skip to content

Commit

Permalink
BOOST_NORETURN: fix msvc
Browse files Browse the repository at this point in the history
  • Loading branch information
jll63 committed Sep 1, 2024
1 parent 8fc7891 commit 0f184e7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions include/yorel/yomm2/core.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,10 @@ struct method<Key, R(A...), Policy> : detail::method_info {

return_type operator()(detail::remove_virtual<A>... args) const;

static return_type
static BOOST_NORETURN return_type
not_implemented_handler(detail::remove_virtual<A>... args);
static return_type ambiguous_handler(detail::remove_virtual<A>... args);
static BOOST_NORETURN return_type
ambiguous_handler(detail::remove_virtual<A>... args);

template<typename Container>
using next = detail::next_aux<method, Container>;
Expand Down

0 comments on commit 0f184e7

Please sign in to comment.