From: Jordan Rose Date: Wed, 28 Nov 2012 19:12:29 +0000 (+0000) Subject: [analyzer] scan-build: Treat '.C' files as C++. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=501be138462d9d6fe1b55ea92c3a14a2d7501c5f;p=clang [analyzer] scan-build: Treat '.C' files as C++. Part of PR14443. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@168804 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/scan-build/ccc-analyzer b/tools/scan-build/ccc-analyzer index 8717225c18..8bd9ec2724 100755 --- a/tools/scan-build/ccc-analyzer +++ b/tools/scan-build/ccc-analyzer @@ -389,6 +389,7 @@ my %LangMap = ( 'cxx' => 'c++', 'txx' => 'c++', 'cc' => 'c++', + 'C' => 'c++', 'ii' => 'c++', 'i' => 'c-cpp-output', 'm' => 'objective-c',