Pointer to an incomplete class type is not allowed

Hi Guys,

I had dropped this for a few weeks and picked this up again, and am running into an issue saying “Pointer to an incomplete class type is not allowed”

This error usually means that you are trying to follow a pointer to a class, but the compiler did not find the definition of that class (it found a declaration for the class, so it is not considered an unknown symbol, but it did not find a definition, so it is considered an incomplete class).

Try rebuilding (instead of only building) your code. If that does not work, please share the full code in your source and header files.

Add this.

#include “Engine/World.h”

Privacy & Terms