We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
test.h
#include <string> struct S { const std::string& str() const; std::string mStr; };
test.cpp
#include "test.h" const std::string& S::str() const { return mStr; }
$ clang-include-cleaner --print=changes test.cpp [...] + <string>