mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-12 19:02:12 +00:00
utils: observer: qualify seastar::noncopyable_function
gcc checks name resolution eagerly, and can't find noncopyable_function as this header doesn't include "seastarx.hh". Qualify the name so it finds it.
This commit is contained in:
@@ -143,7 +143,7 @@ using observer = typename observable<Args...>::observer;
|
||||
|
||||
template <typename... Args>
|
||||
inline observer<Args...> dummy_observer() {
|
||||
return observer<Args...>(nullptr, noncopyable_function<void(Args...)>());
|
||||
return observer<Args...>(nullptr, seastar::noncopyable_function<void(Args...)>());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user