diff options
author | Jordan Rose <jordan_rose@apple.com> | 2012-11-28 19:12:29 +0000 |
---|---|---|
committer | Jordan Rose <jordan_rose@apple.com> | 2012-11-28 19:12:29 +0000 |
commit | 501be138462d9d6fe1b55ea92c3a14a2d7501c5f (patch) | |
tree | d77fe9fcfe2428d579132fcbebcac0ea04d4a867 | |
parent | 3325b1617fce0c8c399b3010f8a65420e623d6f7 (diff) |
[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
-rwxr-xr-x | tools/scan-build/ccc-analyzer | 1 |
1 files changed, 1 insertions, 0 deletions
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', |