GCC compile fix

This commit is contained in:
scrawl 2012-03-17 15:24:47 +01:00
parent 5b08baf5bf
commit 9d4f79bcfc
2 changed files with 2 additions and 2 deletions

View file

@ -472,7 +472,7 @@ namespace MWDialogue
void DialogueManager::parseText(std::string text)
{
std::map<std::string,std::list<ESM::DialInfo>>::iterator it;
std::map<std::string,std::list <ESM::DialInfo> >::iterator it;
for(it = actorKnownTopics.begin();it != actorKnownTopics.end();it++)
{
MWGui::DialogueWindow* win = mEnvironment.mWindowManager->getDialogueWindow();

View file

@ -31,7 +31,7 @@ namespace MWDialogue
void parseText(std::string text);
std::map<std::string,bool> knownTopics;// Those are the topics the player knows.
std::map<std::string,std::list<ESM::DialInfo>> actorKnownTopics;
std::map<std::string,std::list <ESM::DialInfo> > actorKnownTopics;
MWScript::CompilerContext mCompilerContext;
std::ostream mErrorStream;