1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-12 02:28:11 +02:00

gcc compile fix.

This commit is contained in:
Frank Zago 2011-03-13 16:06:20 +00:00
parent a382b641b7
commit 9bd484a6de

View File

@ -80,7 +80,7 @@ void CCreatureWindow::init(const CStackInstance *stack, const CBonusSystemNode *
node.bonuses.remove_if (Selector::typeSybtype(b->type, b->subtype)); //remove used bonuses
}
std::vector<std::pair<std::string, std::string>> descriptions; //quick, yet slow solution
std::vector<std::pair<std::string, std::string> > descriptions; //quick, yet slow solution
std::string text, text2;
BOOST_FOREACH(Bonus* b, bl)
{
@ -288,4 +288,4 @@ CCreatureWindow::~CCreatureWindow()
{
for(int i=0; i<upgResCost.size();i++)
delete upgResCost[i];
}
}