From 3becf7098617566d5fc2d59109682f98bd9e7e45 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 5 Feb 2005 21:27:15 +0000 Subject: [PATCH] fix warning --- stepmania/src/SubscriptionManager.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/SubscriptionManager.h b/stepmania/src/SubscriptionManager.h index b4bcae2380..b6b0127502 100644 --- a/stepmania/src/SubscriptionManager.h +++ b/stepmania/src/SubscriptionManager.h @@ -24,7 +24,7 @@ public: static void Unsubscribe( T* p ) { - set::iterator iter = s_pSubscribers->find( p ); + typename set::iterator iter = s_pSubscribers->find( p ); ASSERT( iter != s_pSubscribers->end() ); s_pSubscribers->erase( iter ); }