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
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?
The text was updated successfully, but these errors were encountered:
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
inpathToMyProject\
and that doesn't mention any unused header in the file
What do I do wrong?
The text was updated successfully, but these errors were encountered: