1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-24 22:14:36 +02:00

fixed DLL_LINKAGE for << operators

This commit is contained in:
Henning Koehler 2017-08-31 10:29:25 +12:00
parent 233ead5671
commit cd35ece10c

View File

@ -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<SecondarySkill, CSkill>