Meshbatch.h needs #include SceneManagement.h

I’m getting the following errors:

1>C:\Program Files\Unreal Engine\4.4\Engine\Source\Runtime\Engine\Public\MeshBatch.h(71): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>C:\Program Files\Unreal Engine\4.4\Engine\Source\Runtime\Engine\Public\MeshBatch.h(71): error C2143: syntax error : missing ';' before '*'
1>C:\Program Files\Unreal Engine\4.4\Engine\Source\Runtime\Engine\Public\MeshBatch.h(156): error C2758: 'FMeshBatch::FLightCacheInterface' : a member of reference type must be initialized
1>          C:\Program Files\Unreal Engine\4.4\Engine\Source\Runtime\Engine\Public\MeshBatch.h(71) : see declaration of 'FMeshBatch::FLightCacheInterface'
1>C:\Program Files\Unreal Engine\4.4\Engine\Source\Runtime\Engine\Public\MeshBatch.h(156): error C2614: 'FMeshBatch' : illegal member initialization: 'LCI' is not a base or member
1>C:\Program Files\Unreal Engine\4.4\Engine\Source\Runtime\Engine\Public\MeshBatch.h(71): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>C:\Program Files\Unreal Engine\4.4\Engine\Source\Runtime\Engine\Public\MeshBatch.h(71): error C2143: syntax error : missing ';' before '*'
1>C:\Program Files\Unreal Engine\4.4\Engine\Source\Runtime\Engine\Public\MeshBatch.h(156): error C2758: 'FMeshBatch::FLightCacheInterface' : a member of reference type must be initialized
1>          C:\Program Files\Unreal Engine\4.4\Engine\Source\Runtime\Engine\Public\MeshBatch.h(71) : see declaration of 'FMeshBatch::FLightCacheInterface'
1>C:\Program Files\Unreal Engine\4.4\Engine\Source\Runtime\Engine\Public\MeshBatch.h(156): error C2614: 'FMeshBatch' : illegal member initialization: 'LCI' is not a base or member

But if I add
#include “SceneManagement.h”
to MeshBatch.h it compiles without a problem.

Please advise if this is a bug (which I’m sure you’ll fix, I’ve commented on the line in GitHub to show where (the last commit), because you guys are Epic after all :stuck_out_tongue: ) or am I missing something? If I’m missing something, please advise what I should be changing.

Thanking you in advance,
KatoNamus