Skip to content

Commit

Permalink
[EMCAL-710] Fix namespace in stream operator (AliceO2Group#13027)
Browse files Browse the repository at this point in the history
Stream operator for ErrorTypeFEE must be put explicitly
into namespace o2::emcal, otherwise it is part of the global
namespace.
  • Loading branch information
mfasDa authored Apr 15, 2024
1 parent af60a67 commit 9d3b9a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DataFormats/Detectors/EMCAL/src/ErrorTypeFEE.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const char* ErrorTypeFEE::getErrorTypeTitle(unsigned int errorTypeID)
};
}

std::ostream& operator<<(std::ostream& stream, const ErrorTypeFEE& error)
std::ostream& o2::emcal::operator<<(std::ostream& stream, const ErrorTypeFEE& error)
{
error.PrintStream(stream);
return stream;
Expand Down

0 comments on commit 9d3b9a0

Please sign in to comment.