Fix GitHub language detection for header files

Force GitHub to treat .h files as C++ because header files in this repo
are almost always C++, not C. Currently some Havok headers are being
misdetected as C code.
This commit is contained in:
Léo Lam 2022-03-21 21:53:08 +01:00
parent 18c60323a9
commit 0197ca3aba
No known key found for this signature in database
GPG Key ID: 0DF30F9081000741

2
.gitattributes vendored Normal file
View File

@ -0,0 +1,2 @@
# Header files are almost always C++ rather than C
*.h linguist-language=C++