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

Summary: Unresolved arglist
Product: cnd Reporter: nnnnnk <nnnnnk>
Component: Code ModelAssignee: issues@cnd <issues>
Status: RESOLVED DUPLICATE    
Severity: blocker    
Priority: P3    
Version: 6.x   
Hardware: Sun   
OS: All   
Issue Type: DEFECT Exception Reporter:

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 ***