This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 158217 - Unresolved arglist
Summary: Unresolved arglist
Status: RESOLVED DUPLICATE of bug 151711
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Model (show other bugs)
Version: 6.x
Hardware: Sun All
: P3 blocker (vote)
Assignee: issues@cnd
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-02-09 17:52 UTC by nnnnnk
Modified: 2009-02-19 20:29 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description nnnnnk 2009-02-09 17:52:59 UTC
Example:
#include <stdarg.h>

int main() {
    return 0;
}

int foo(const char *format, ...)
{
    va_list(arglist); // unresolved
    va_start(arglist , format );
    return 0;
}
Comment 1 nnnnnk 2009-02-12 18:14:36 UTC
The reason is old style declaration of arglist - type (varname).

*** This issue has been marked as a duplicate of 151711 ***