﻿id	summary	reporter	owner	description	type	status	priority	component	version	resolution	keywords	cc
261	Assignment for flexible array member	Thierry Delisle	Thierry Delisle <tdelisle@…>	"C supports structures with ""flexible array member"", i.e.,
{{{
struct SomeStruct {
	int NormalFields;
	char FlexibleArray[];
};
}}}

These structures do not really have a known size and therefore we shouldn't be automatically generating assignment operators or field constructors.

I can see this being handled in a few ways: 
- Going through all the members in FuncGenerator::genStandardFuncs.
- Mark the struct as special earlier than that.
- Have the resolver somehow mark these as unresolvable.

These autogenerated functions cause the following output: ""note: the ABI of passing struct with a flexible array member has changed in GCC 4.4"""	defect	closed	minor	cfa-cc	1.0	fixed	Warning	
