Skip to content

Commit c0e68a2

Browse files
authored
Fix formatting in onTheFlyTracker.cxx macros
1 parent 6273975 commit c0e68a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ALICE3/TableProducer/OTF/onTheFlyTracker.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ using namespace o2::framework;
6868
using std::array;
6969
#define getHist(type, name) std::get<std::shared_ptr<type>>(histPointers[name])
7070
#define fillHist(type, name, ...) \
71-
std::get<std::shared_ptr<type>>(histPointers[name])->Fill(__VA_ARGS__)
72-
#define insertHist(name, ...) histPointers[(name).c_str()] = histos.add((name).c_str(), __VA_ARGS__)
71+
std::get<std::shared_ptr<type>>(histPointers[name])->Fill(__VA_ARGS__);
72+
#define insertHist(name, ...) histPointers[(name).c_str()] = histos.add((name).c_str(), __VA_ARGS__);
7373

7474
struct OnTheFlyTracker {
7575
Produces<aod::Collisions> tableCollisions;

0 commit comments

Comments
 (0)