Commit 8fcbeac2 by David Edelsohn

- Follow up to 2002-06-05 patch.

From-SVN: r54934
parent 80b1331c
...@@ -59,7 +59,7 @@ ...@@ -59,7 +59,7 @@
{ {
while (__low < __high) while (__low < __high)
{ {
*__low = this->do_toupper(*__low); *__low = ::toupper((int) *__low);
++__low; ++__low;
} }
return __high; return __high;
...@@ -74,8 +74,9 @@ ...@@ -74,8 +74,9 @@
{ {
while (__low < __high) while (__low < __high)
{ {
*__low = this->do_tolower(*__low); *__low = ::tolower((int) *__low);
++__low; ++__low;
} }
return __high; return __high;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment