Make Colour's op<< hidden friend

This commit is contained in:
Martin Hořeňovský 2020-05-10 07:32:40 +02:00
parent 895d0a0696
commit 14533f5bb6
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 2 additions and 1 deletions

View File

@ -60,9 +60,10 @@ namespace Catch {
private:
bool m_moved = false;
friend std::ostream& operator << (std::ostream& os, Colour const&);
};
std::ostream& operator << ( std::ostream& os, Colour const& );
} // end namespace Catch