When compiling a rather large C++ project, I am getting this message:
note: -Wmisleading-indentation is disabled from this point onwards, since column-tracking was disabled due to the size of the code/headers
So, a few questions:
- How bad is it that this warning is disabled?
- What kind of things cause this to be disabled? Just the code being too large?
- Is there a way to optimize/fix the code to prevent it from being disabled?
- Is there a way to re-enable it despite the size of the code/headers?
- Is there a way to silence the note about the warning being disabled?