My Xcode is acting all crazy for some reason by giving me this error on all of my #include's that says, "#include nested too deeply". Is there a way to fix this so I can use Xcode normally again? It's only happening in my Game header file.
1 2 3 4
#include <iostream> // #include nested too deeply (is what the error says)
#include <string> // #include nested too deeply
#include "Game.hpp" // #include nested too deeply
usingnamespace std;