This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug libstdc++/11723] ctype<wchar_t>::do_is(mask, wchar_t) is slow
- From: "bkoz at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 6 Oct 2003 16:43:13 -0000
- Subject: [Bug libstdc++/11723] ctype<wchar_t>::do_is(mask, wchar_t) is slow
- References: <20030730091541.11723.peturr02@ru.is>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11723
bkoz at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|unassigned at gcc dot gnu |bkoz at gcc dot gnu dot org
|dot org |
Status|NEW |ASSIGNED
------- Additional Comments From bkoz at gcc dot gnu dot org 2003-10-06 16:43 -------
Yes, I noticed this when implementing it.... would like to cache this stuff.
Comparing to ctype<char> isn't especially helpful, since ctype<char> doesn't
have virtual functions (since the standard provides a specialization that
bypasses the virtuals).
However, there has got to be a better way.
-benjamin