From c4e18da06fd4e27d98d1176c4f9b5e0c32da8145 Mon Sep 17 00:00:00 2001 From: David Rose Date: Sat, 15 Feb 2003 18:29:10 +0000 Subject: [PATCH] gcc 3.2 --- ppremake/ppScope.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ppremake/ppScope.cxx b/ppremake/ppScope.cxx index 3669b587f8..5e87dd2b91 100644 --- a/ppremake/ppScope.cxx +++ b/ppremake/ppScope.cxx @@ -1960,7 +1960,10 @@ expand_makeguid(const string ¶ms) { } // Convert the entire GUID string to uppercased letters. - transform(guid.begin(), guid.end(), guid.begin(), toupper); + string::iterator si; + for (si = guid.begin(); si != guid.end(); ++si) { + (*si) = toupper(*si); + } return guid; }