You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The check for build/include_subdir only checks that a subdirectory is present at all; it does not check that it's complete or correct, and it does not allow for top level headers that simply don't have a subdirectory. E.g. if the file structure was
src
|
|-- main.cpp
|
|-- utils.hpp
and we had a main.cpp like
#include"utils.hpp"intmain() {
}
this would raise an error, even though everything is correct.