Export std::ostream&operator<<(std::ostream&,Phrases) correctly

This commit is contained in:
Martchus 2017-10-07 22:52:06 +02:00
parent 784f3d963a
commit 0b19d0b523
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ enum class Phrases {
ErrorMessage, /**< bold, red "==> ERROR: " */
WarningMessage, /**< bold, yellow "==> WARNING: " */
};
std::ostream &operator<<(std::ostream &stream, Phrases phrase);
CPP_UTILITIES_EXPORT std::ostream &operator<<(std::ostream &stream, Phrases phrase);
} // namespace EscapeCodes