/Users/buildslave/jenkins/workspace/coverage/llvm-project/clang/lib/Basic/CLWarnings.cpp
Line | Count | Source (jump to first uncovered line) |
1 | | //===--- CLWarnings.h - Maps some cl.exe warning ids -----------*- C++ -*-===// |
2 | | // |
3 | | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
4 | | // See https://llvm.org/LICENSE.txt for license information. |
5 | | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
6 | | // |
7 | | //===----------------------------------------------------------------------===// |
8 | | // |
9 | | // This file implements the Diagnostic-related interfaces. |
10 | | // |
11 | | //===----------------------------------------------------------------------===// |
12 | | |
13 | | #include "clang/Basic/CLWarnings.h" |
14 | | #include "clang/Basic/DiagnosticCategories.h" |
15 | | |
16 | | using namespace clang; |
17 | | |
18 | | llvm::Optional<diag::Group> |
19 | 25 | clang::diagGroupFromCLWarningID(unsigned CLWarningID) { |
20 | 25 | switch (CLWarningID) { |
21 | 1 | case 4005: return diag::Group::MacroRedefined; |
22 | 0 | case 4018: return diag::Group::SignCompare; |
23 | 1 | case 4100: return diag::Group::UnusedParameter; |
24 | 1 | case 4910: return diag::Group::DllexportExplicitInstantiationDecl; |
25 | 3 | case 4996: return diag::Group::DeprecatedDeclarations; |
26 | 25 | } |
27 | 19 | return {}; |
28 | 25 | } |