summaryrefslogtreecommitdiffstats
path: root/ignore
diff options
context:
space:
mode:
authorBrian Gianforcaro <b.gianfo@gmail.com>2017-06-11 19:42:52 -0700
committerAndrew Gallant <jamslam@gmail.com>2017-06-12 07:48:31 -0400
commit27f97db510e0b2d891e63e21c1d1636d2f5cb1fb (patch)
treec28d3667f982437805af0d07a7c256ca62ef9361 /ignore
parent506ad1f3cfd058c788e37cb72c986d1b5f52a0c9 (diff)
Add .inl as one of the c++ file typee definitions.
.inl files are often used by convention to include both inline functions, or function templates.
Diffstat (limited to 'ignore')
-rw-r--r--ignore/src/types.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ignore/src/types.rs b/ignore/src/types.rs
index 5467f5e3..df6ef657 100644
--- a/ignore/src/types.rs
+++ b/ignore/src/types.rs
@@ -111,7 +111,7 @@ const DEFAULT_TYPES: &'static [(&'static str, &'static [&'static str])] = &[
("config", &["*.config"]),
("cpp", &[
"*.C", "*.cc", "*.cpp", "*.cxx",
- "*.h", "*.H", "*.hh", "*.hpp",
+ "*.h", "*.H", "*.hh", "*.hpp", "*.inl",
]),
("crystal", &["Projectfile", "*.cr"]),
("cs", &["*.cs"]),