From 57fad52ef3deae425adfcfff98af8d19adffe70e Mon Sep 17 00:00:00 2001 From: Ykkrosh Date: Sat, 21 Aug 2004 12:53:17 +0000 Subject: [PATCH] GCC non-fixes: marked broken code This was SVN commit r1032. --- source/lib/res/h_mgr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lib/res/h_mgr.cpp b/source/lib/res/h_mgr.cpp index b0e6759fab..5770dec338 100755 --- a/source/lib/res/h_mgr.cpp +++ b/source/lib/res/h_mgr.cpp @@ -363,7 +363,7 @@ static Handle find_key(uintptr_t key, H_Type type, bool remove = false) // not found in mapping if(it == key2idx.end()) return -1; - It end = key2idx.upper_bound(key); + It end = key2idx.upper_bound(key); // XXX this doesn't exist in gcc for(; it != end; ++it) { i32 idx = it->second;