Merge pull request #703 from nablaa/hh-hxx-header
Treat *.hh and *.hxx files as C++ files
This commit is contained in:
commit
4ad246f56f
|
@ -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