You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the "recent" blocking_kind rework there are several places in the code that look like this (godbolt):
namespaceunifex
{
inlineconstexprstructblocking_t {
autooperator()() const { return""; }
} blocking;
namespace_let_v
{
struct_sender {
staticconstexprint blocking = 1;
friendautotag_invoke(const _sender& sender) noexcept {
constchar* v = blocking(); // error: called object type 'int' is not a function or function pointer
}
};
}
}
With the "recent" blocking_kind rework there are several places in the code that look like this (godbolt):
For example in
let_value.hpp
:libunifex/include/unifex/let_value.hpp
Lines 384 to 386 in 2358687
I don't understand how your pipeline even managed to compile libunifex. This godbolt example does not: https://godbolt.org/z/6MdYYM586
Proposed solution:
The text was updated successfully, but these errors were encountered: