1024 - Function requires a body.
Description
An attempt was made to invoke a Function without a body, where the Function requires one.
Example
Config:
Alias( 'name' )
Output:
c:\Test\fbuild.bff(1):(1) FASTBuild Error #1024 - Alias() - Function requires a body.
Alias( 'name' )
^
\--here
Fix:
Alias( 'name' )
{
...
}