Description
Currently, includes
is misleading, since the name does not in any way reflect the fact that the headers will be included as system headers. This goes against developer expectations.
System headers should rarely be used on own code, because all C++ tools (compilers, static analyzers, etc) will ignore warnings in such headers.
It would be a lot clearer and easy to spot during code review if includes
was renamed to system_includes
.