From cd35ece10c26573256260033ee87638c444795d6 Mon Sep 17 00:00:00 2001 From: Henning Koehler Date: Thu, 31 Aug 2017 10:29:25 +1200 Subject: [PATCH] fixed DLL_LINKAGE for << operators --- lib/CSkillHandler.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/CSkillHandler.h b/lib/CSkillHandler.h index b5f64b0e9..635145075 100644 --- a/lib/CSkillHandler.h +++ b/lib/CSkillHandler.h @@ -56,8 +56,8 @@ public: } friend class CSkillHandler; - friend std::ostream & operator<<(std::ostream & out, const CSkill & skill); - friend std::ostream & operator<<(std::ostream & out, const CSkill::LevelInfo & info); + friend DLL_LINKAGE std::ostream & operator<<(std::ostream & out, const CSkill & skill); + friend DLL_LINKAGE std::ostream & operator<<(std::ostream & out, const CSkill::LevelInfo & info); }; class DLL_LINKAGE CSkillHandler: public CHandlerBase