1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00

Ugly workaround for DLL_LINKAGE issue. Should be removed once I figure

out what's triggering it.
This commit is contained in:
Ivan Savenko 2014-06-25 00:37:33 +03:00
parent 6e3eaeee21
commit 3b0ecee678

View File

@ -1512,7 +1512,13 @@ struct ObstaclesRemoved : public CPackForClient //3014
}
};
//FIXME: figure out why gcc fails to find type_info for this class with -fvisibility=hidden flag set
#ifdef __linux__
struct DLL_LINKAGE CatapultAttack : public CPackForClient //3015
#else
struct CatapultAttack : public CPackForClient //3015
#endif
{
struct AttackInfo
{