On Thu, 22 Jul 1999 15:50:25 +0100, Arnd Hanses wrote:

>>As I said, don't do this here.  It is much more efficient to bitand 0x7f
>>to whole the string:
>>
>>LString& LString::discardSign()
>>{
>>        for (int i=0; i<length() ; i++)
>>                p->s[i] |= 0x7f;
>>        return *this;
>>}
>>

arrgh, beware typo

&= 0x7f

is meant

Reply via email to