From 42d5e2f4650e254ffca7432968615fbd3e3e00c7 Mon Sep 17 00:00:00 2001 From: "(no author)" <(no author)@138bc75d-0d04-0410-961f-82ee72b054a4> Date: Mon, 18 Mar 2002 08:16:39 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'x86-64-merge-2002-03-18'. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/tags/x86-64-merge-2002-03-18@50948 138bc75d-0d04-0410-961f-82ee72b054a4 --- libstdc++-v3/config/os/gnu-linux/bits/ctype_noninline.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libstdc++-v3/config/os/gnu-linux/bits/ctype_noninline.h') diff --git a/libstdc++-v3/config/os/gnu-linux/bits/ctype_noninline.h b/libstdc++-v3/config/os/gnu-linux/bits/ctype_noninline.h index 86a38fa8f58..18324d167dd 100644 --- a/libstdc++-v3/config/os/gnu-linux/bits/ctype_noninline.h +++ b/libstdc++-v3/config/os/gnu-linux/bits/ctype_noninline.h @@ -71,14 +71,14 @@ char ctype::do_toupper(char __c) const - { return _M_toupper[static_cast(__c)]; } + { return _M_toupper[static_cast(__c)]; } const char* ctype::do_toupper(char* __low, const char* __high) const { while (__low < __high) { - *__low = _M_toupper[static_cast(*__low)]; + *__low = _M_toupper[static_cast(*__low)]; ++__low; } return __high; @@ -86,14 +86,14 @@ char ctype::do_tolower(char __c) const - { return _M_tolower[static_cast(__c)]; } + { return _M_tolower[static_cast(__c)]; } const char* ctype::do_tolower(char* __low, const char* __high) const { while (__low < __high) { - *__low = _M_tolower[static_cast(*__low)]; + *__low = _M_tolower[static_cast(*__low)]; ++__low; } return __high; -- cgit v1.2.3