From cf09db8166ab214e2d12c76a1023ca209d9f2f45 Mon Sep 17 00:00:00 2001 From: Martchus Date: Sat, 7 Oct 2017 23:02:29 +0200 Subject: [PATCH] Export ostream &operator<<(std::ostream&,const Failure&failure) --- application/failure.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/failure.h b/application/failure.h index 6001fde..d5e53a3 100644 --- a/application/failure.h +++ b/application/failure.h @@ -21,7 +21,7 @@ private: std::string m_what; }; -std::ostream &operator<<(std::ostream &o, const Failure &failure); +CPP_UTILITIES_EXPORT std::ostream &operator<<(std::ostream &o, const Failure &failure); } // namespace ApplicationUtilities