Skip to content

Commit 9d3b9a0

Browse files
authored
[EMCAL-710] Fix namespace in stream operator (AliceO2Group#13027)
Stream operator for ErrorTypeFEE must be put explicitly into namespace o2::emcal, otherwise it is part of the global namespace.
1 parent af60a67 commit 9d3b9a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DataFormats/Detectors/EMCAL/src/ErrorTypeFEE.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ const char* ErrorTypeFEE::getErrorTypeTitle(unsigned int errorTypeID)
111111
};
112112
}
113113

114-
std::ostream& operator<<(std::ostream& stream, const ErrorTypeFEE& error)
114+
std::ostream& o2::emcal::operator<<(std::ostream& stream, const ErrorTypeFEE& error)
115115
{
116116
error.PrintStream(stream);
117117
return stream;

0 commit comments

Comments
 (0)