mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-25 01:31:08 +00:00
([NSDate -initWithString:]): Initialize theTime to 0, to prevent warning.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1168 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
8629f4acda
commit
8e4d7cb0f0
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@
|
||||||
|
|
||||||
- (id) initWithString: (NSString*)description
|
- (id) initWithString: (NSString*)description
|
||||||
{
|
{
|
||||||
NSTimeInterval theTime;
|
NSTimeInterval theTime = 0;
|
||||||
/* From the doc:
|
/* From the doc:
|
||||||
Returns an calendar date object with a date and time value
|
Returns an calendar date object with a date and time value
|
||||||
specified by the international string-representation format:
|
specified by the international string-representation format:
|
||||||
|
|
Loading…
Reference in a new issue