From 5a3053a99bd9cc6c85443eaf22625645efa468d4 Mon Sep 17 00:00:00 2001 From: emb <> Date: Mon, 2 Feb 2015 23:18:53 -0600 Subject: [PATCH] Fixing compiler error due to nested std collections. --- RetroFE/Source/Graphics/Animate/TweenSet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RetroFE/Source/Graphics/Animate/TweenSet.cpp b/RetroFE/Source/Graphics/Animate/TweenSet.cpp index 5964c24..f2dde23 100644 --- a/RetroFE/Source/Graphics/Animate/TweenSet.cpp +++ b/RetroFE/Source/Graphics/Animate/TweenSet.cpp @@ -23,7 +23,7 @@ TweenSet::~TweenSet() void TweenSet::DestroyTweens() { - std::map>::iterator it = TweenMap.begin(); + std::map >::iterator it = TweenMap.begin(); while(it != TweenMap.end()) {