Browse Source

gcc compile fix.

Frank Zago 14 years ago
parent
commit
9bd484a6de
1 changed files with 2 additions and 2 deletions
  1. 2 2
      client/CCreatureWindow.cpp

+ 2 - 2
client/CCreatureWindow.cpp

@@ -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];
-}
+}