We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fad0c5 commit eda5257Copy full SHA for eda5257
Framework/Core/include/Framework/AnalysisManagers.h
@@ -466,7 +466,7 @@ struct ServiceManager<Service<T>> {
466
{
467
// FIXME: for the moment we only need endOfStream to be
468
// stateless. In the future we might want to pass it EndOfStreamContext
469
- if constexpr (requires { T::endOfStream(); }) {
+ if constexpr (requires (T t) { t.endOfStream(); }) {
470
service.service->endOfStream();
471
return true;
472
}
0 commit comments