I'm using this project running off the master branch in a pet project of mine and compiling with clang on the latest version of master. When attempting to compile I get the following error
/.../cppcoro/include/cppcoro/generator.hpp:36:83: note: must be declared with 'noexcept'
constexpr std::experimental::suspend_always final_suspend() const { return {}; }
Making this function noexcept solved the problem but this seems odd to me. If the correct solution was to just add noexcept I'd assume that it would already be there. Is this a bug or am I just doing something wrong?
I'm using this project running off the master branch in a pet project of mine and compiling with clang on the latest version of master. When attempting to compile I get the following error
Making this function noexcept solved the problem but this seems odd to me. If the correct solution was to just add noexcept I'd assume that it would already be there. Is this a bug or am I just doing something wrong?