From 27f97db510e0b2d891e63e21c1d1636d2f5cb1fb Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Sun, 11 Jun 2017 19:42:52 -0700 Subject: [PATCH] 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. --- ignore/src/types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ignore/src/types.rs b/ignore/src/types.rs index 5467f5e..df6ef65 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"]),