|
FAUST compiler
0.9.9.6b8
|

Go to the source code of this file.
Functions | |
| schema * | makeEnlargedSchema (schema *s, double width) |
| Returns an enlarged schema, but only if really needed that is if the requiered width is greater that the schema width. | |
| schema* makeEnlargedSchema | ( | schema * | s, |
| double | width | ||
| ) |
Returns an enlarged schema, but only if really needed that is if the requiered width is greater that the schema width.
Definition at line 32 of file enlargedSchema.cpp.
References schema::width().
Referenced by makeMergeSchema(), makeParSchema(), makeRecSchema(), and makeSplitSchema().
{
if (width > s->width()) {
return new enlargedSchema(s, width);
} else {
return s;
}
}


1.8.0