Fixing compiler error due to nested std collections.

This commit is contained in:
emb 2015-02-02 23:18:53 -06:00
parent 5790f76f4e
commit 5a3053a99b

View File

@ -23,7 +23,7 @@ TweenSet::~TweenSet()
void TweenSet::DestroyTweens()
{
std::map<std::string, std::map<int, TweenSets *>>::iterator it = TweenMap.begin();
std::map<std::string, std::map<int, TweenSets *> >::iterator it = TweenMap.begin();
while(it != TweenMap.end())
{