Function operator<<
Synopsis
#include <include/internal/catch_message.h>
template <typename T>
MessageStream & operator<<(T const &value)
Description
No description yet.
Source
Lines 41-45 in include/internal/catch_message.h.
template<typename T>
MessageStream& operator << ( T const& value ) {
m_stream << value;
return *this;
}