1041 - #else without matching #if.
Description
    
A #else token can only be used after an #if token.
    
Example
    
Config:
    #else
#endif
Output:
C:\Test\fbuild.bff(1,2): FASTBuild Error #1041 - #else without matching #if.
#else
 ^
 \--here
Fix:
#if __OSX__
#else
#endif
    