From: Joel Rosdahl Date: Sat, 21 Aug 2010 16:46:30 +0000 (+0200) Subject: Add .cp and .CP as known C++ suffixes X-Git-Tag: v3.1~64 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4f6023b3e99e56acf16a953d06771e60698a833a;p=thirdparty%2Fccache.git Add .cp and .CP as known C++ suffixes --- diff --git a/ccache.c b/ccache.c index 83d134f22..a32ba478a 100644 --- a/ccache.c +++ b/ccache.c @@ -210,6 +210,8 @@ static const struct { {".C", "c++"}, {".cc", "c++"}, {".CC", "c++"}, + {".cp", "c++"}, + {".CP", "c++"}, {".cpp", "c++"}, {".CPP", "c++"}, {".cxx", "c++"},