I use the following command:
python .\cppclean --include-path pathToMyProject\ pathToACppFilesWithToMuchHeader\myfile.cpp
and I have the following output:
pathToACppFilesWithToMuchHeader\myfile.cpp: should #include header file 'FullPath\myfile.h'
but in myfile.cpp I include this file in the following way:
#include <folder1/myfile.h>
with folder1 in pathToMyProject\
and that doesn't mention any unused header in the file
What do I do wrong?