Skip to content

Commit

Permalink
fixup! ignore warnings variable in objectManager.cxx
Browse files Browse the repository at this point in the history
  • Loading branch information
Michal Tichák committed Nov 21, 2024
1 parent ece6f89 commit 1ff1237
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions Framework/include/QualityControl/ObjectsManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,7 @@ class ObjectsManager
* @param obj
* @throw ObjectNotFoundError if object is not found.
*/
void
stopPublishing(TObject* obj);
void stopPublishing(TObject* obj);

/**
* Stop publishing this object
Expand Down
2 changes: 1 addition & 1 deletion Framework/src/SliceTrendingTask.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ void SliceTrendingTask::generatePlots()
}

mPlots[plot.name] = c;
getObjectsManager()->startPublishing<true>(c, PublicationPolicy::Once);
getObjectsManager()->startPublishing(c, PublicationPolicy::Once);
}
} // void SliceTrendingTask::generatePlots()

Expand Down
2 changes: 1 addition & 1 deletion Framework/src/TrendingTask.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ void TrendingTask::generatePlots()
}
auto c = drawPlot(plotConfig);
mPlots[plotConfig.name].reset(c);
getObjectsManager()->startPublishing<true>(c, PublicationPolicy::Once);
getObjectsManager()->startPublishing(c, PublicationPolicy::Once);
}
}

Expand Down

0 comments on commit 1ff1237

Please sign in to comment.