Treat *.hh and *.hxx files as C++ files

Previously they were erroneously detected as C files.
This commit is contained in:
Miika-Petteri Matikainen 2015-11-07 12:58:50 +02:00
parent fdb596fa05
commit 1d4e33e792
1 changed files with 2 additions and 0 deletions

View File

@ -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;