Treat *.hh and *.hxx files as C++ files
Previously they were erroneously detected as C files.
This commit is contained in:
parent
fdb596fa05
commit
1d4e33e792
|
@ -220,6 +220,8 @@ bool Path::isCPP(const std::string &path)
|
|||
extension == ".cc" ||
|
||||
extension == ".c++" ||
|
||||
extension == ".hpp" ||
|
||||
extension == ".hxx" ||
|
||||
extension == ".hh" ||
|
||||
extension == ".tpp" ||
|
||||
extension == ".txx") {
|
||||
return true;
|
||||
|
|
Loading…
Reference in New Issue