What steps will reproduce the problem?
1. Run the wsdl2objc tool on some WSDL file.
2. Include the generated NSDate+ISO8601Parsing.m file in an Xcode project.
3. Compile using 10.6 *Release*
What is the expected output?
No warnings.
What do you see instead?
NSDate+ISO8601Parsing.m:205: warning: 'start_of_date' may be used uninitialized
in this
function
What version of the product are you using? On what operating system?
Version r161 on Mac OS X 10.6.3
Please provide any additional information below.
A workaround for me was to change:
NSRange range = { 0U, 0U };
const unsigned char *start_of_date;
to:
NSRange range = { 0U, 0U };
const unsigned char *start_of_date = 0;
Original issue reported on code.google.com by gershon....@gmail.com on 9 May 2010 at 1:54
Original issue reported on code.google.com by
gershon....@gmail.com
on 9 May 2010 at 1:54