Changeset 1064 for code/trunk/src/util/String.cc
- Timestamp:
- Apr 14, 2008, 9:39:57 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/util/String.cc
r1062 r1064 308 308 for (unsigned int i = 0; i < str->size(); ++i) 309 309 { 310 (*str)[i] = tolower((*str)[i]);310 (*str)[i] = (char)tolower((*str)[i]); 311 311 } 312 312 } … … 332 332 for (unsigned int i = 0; i < str->size(); ++i) 333 333 { 334 (*str)[i] = toupper((*str)[i]);334 (*str)[i] = (char)toupper((*str)[i]); 335 335 } 336 336 }
Note: See TracChangeset
for help on using the changeset viewer.