GSMutableString inherits hash implementation from GSString

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@29105 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2009-12-07 05:10:50 +00:00
parent f8c0ecf186
commit c84063c3a8

View file

@ -2808,7 +2808,7 @@ transmute(GSStr self, NSString *aString)
if (self->_flags.wide)
{
register const char *p = self->_contents.u;
register const unichar *p = self->_contents.u;
while (index < len)
{
@ -3613,6 +3613,7 @@ agree, create a new GSUnicodeInlineString otherwise.
+ (void) initialize
{
setup();
GSObjCAddClassBehavior(self, [GSString class]);
}
- (void) appendFormat: (NSString*)format, ...