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 190806 - parser fails on structure initializations
Summary: parser fails on structure initializations
Status: RESOLVED FIXED
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Model (show other bugs)
Version: 7.0
Hardware: All All
: P2 normal (vote)
Assignee: Vladimir Voskresensky
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-10-06 14:19 UTC by Vladimir Voskresensky
Modified: 2010-10-06 15:01 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 Vladimir Voskresensky 2010-10-06 14:19:28 UTC
static library_t LibraryTable[] = {
	/* system libs */
	[LIB_C] = {
		.name = "c",
		.idx = LIB_C, .group = LIB_GROUP_SYSTEM,
		.flags = { .no_static = true },
		.customizer = &lib_system_customizer,
	},
	[LIB_STDCXX4] = {
		.name = "stdcxx4",
		.idx = LIB_STDCXX4, .group = LIB_GROUP_SYSTEM,
		.path_desc = (ExtDescription[]) {
			{ .ename = "/usr/include/stdc/ansi",	 .ebase = EXT_INCLUDE_STD },
			{ .ename = "/usr/include/stdc",	 .ebase = EXT_INCLUDE_STD },
			{ NULL },
		},

		.conflicts = (enum LIB_IDX[]) { 
			LIB_C_STD, LIB_STLPORT4, LIB_STLPORT4_dbg,
			LIB_RWTOOLS, LIB_RWTOOLS_dbg, LIB_RWTOOLS_std, LIB_RWTOOLS_std_dbg,
			LIB_none
		},
		.instlib = "lib4.so",
		.compat_set = _fset_bit_value(IDX_COMPAT_5),
		.customizer = &lib_stdcxx4_customizer,
	},

	[LIB_SUNIPERF] = {
		.name = "erf",
		.idx = LIB_SUNIPERF, .group = LIB_GROUP_API,
		.depends = (enum LIB_IDX []) { 
			LIB_F95_BASE,
			LIB_MTSK, LIB_INTERVAL, 
			LIB_SUNMATH, LIB_PICL, LIB_M,
			LIB_none 
		},
		.flags = { .no_dynamic = true }
	},
};
Comment 1 Vladimir Voskresensky 2010-10-06 15:01:16 UTC
fixed:
http://hg.netbeans.org/cnd-main/rev/d4987e162302