Merge pull request #703 from nablaa/hh-hxx-header

Treat *.hh and *.hxx files as C++ files
This commit is contained in:
PKEuS 2015-11-08 13:52:56 +01:00
commit 4ad246f56f
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;