Implement missing init method.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@20041 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
CaS 2004-09-09 10:39:01 +00:00
parent 8b9685f81f
commit d6ca992407
2 changed files with 13 additions and 0 deletions

View file

@ -340,6 +340,14 @@ setup(void)
return; // Placeholders never get deallocated.
}
/*
* Replace self with an empty inline unicode string.
*/
- (id) init
{
return [self initWithCharacters: 0 length: 0];
}
/*
* Replace self with an inline unicode string.
*/