forked from OSchip/llvm-project
[git-clang-format] recognize hxx as a C++ file
clangd, clang-tidy, etc does that already, no reason why git-clang-format should skip hxx files. Reviewed By: ilya-biryukov Differential Revision: https://reviews.llvm.org/D63621 llvm-svn: 364014
This commit is contained in:
parent
c9b2cd4674
commit
580a8bc69a
|
@ -77,7 +77,7 @@ def main():
|
|||
'c', 'h', # C
|
||||
'm', # ObjC
|
||||
'mm', # ObjC++
|
||||
'cc', 'cp', 'cpp', 'c++', 'cxx', 'hpp', # C++
|
||||
'cc', 'cp', 'cpp', 'c++', 'cxx', 'hpp', 'hxx', # C++
|
||||
'cu', # CUDA
|
||||
# Other languages that clang-format supports
|
||||
'proto', 'protodevel', # Protocol Buffers
|
||||
|
|
Loading…
Reference in New Issue