Robert Covington wrote:
> Noticed while looking the FBtoC .m's: FBtoC needs to add a single carriage return after each BeginCFunction/EndC insert, otherwise they run into each other and then at the top of the other functions.
Good idea, thanks. Fixed for next release.
BeginCFunction
void foo( void )
{
}
EndC
BeginCFunction
void bar( void )
{
}
EndC
Was:
///////////////////////////////////////////////////
// translated globals and fns //
///////////////////////////////////////////////////
void foo( void )
{
}
void bar( void )
{
}
Will be:
///////////////////////////////////////////////////
// translated globals and fns //
///////////////////////////////////////////////////
void foo( void )
{
}
void bar( void )
{
}
Robert P.