Skip to content
Snippets Groups Projects
Commit f06e110e authored by Lorenzo Moneta's avatar Lorenzo Moneta
Browse files

fix GetPoolSize for noimt

parent fd4b65ab
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,11 @@ public:
unsigned int GetPoolSize() const {
if (!fMTExecImpl) return 1;
return fMTExecImpl->GetPoolSize();
#ifdef R__USE_IMT
return fMTExecImpl->GetPoolSize();
#else
return 1;
#endif
}
/// wrap TExecutor::Foreach
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment