mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-02 09:52:27 -04:00
gcc 3.2
This commit is contained in:
parent
ed77186e26
commit
c4e18da06f
@ -1960,7 +1960,10 @@ expand_makeguid(const string ¶ms) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Convert the entire GUID string to uppercased letters.
|
// 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;
|
return guid;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user