summaryrefslogtreecommitdiff
path: root/include/clang/Basic/DiagnosticAnalysis.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-01-29 05:15:15 +0000
committerChris Lattner <sabre@nondot.org>2009-01-29 05:15:15 +0000
commit500d3297d2a21edeac4d46cbcbe21bc2352c2a28 (patch)
tree40f9bc53ad5395abd8fcfac74747e888eb7054f9 /include/clang/Basic/DiagnosticAnalysis.h
parent68355a57bb9d5daccd3fc73e92370ba2b1a6eafb (diff)
downloadclang-500d3297d2a21edeac4d46cbcbe21bc2352c2a28.tar.gz
move library-specific diagnostic headers into library private dirs. Reduce
redundant #includes. Patch by Anders Johnsen! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63271 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/DiagnosticAnalysis.h')
-rw-r--r--include/clang/Basic/DiagnosticAnalysis.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/include/clang/Basic/DiagnosticAnalysis.h b/include/clang/Basic/DiagnosticAnalysis.h
deleted file mode 100644
index 9dc008ec13..0000000000
--- a/include/clang/Basic/DiagnosticAnalysis.h
+++ /dev/null
@@ -1,27 +0,0 @@
-//===--- DiagnosticAnalysis.h - Diagnostics for libanalysis -----*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef LLVM_CLANG_DIAGNOSTICANALYSIS_H
-#define LLVM_CLANG_DIAGNOSTICANALYSIS_H
-
-#include "clang/Basic/Diagnostic.h"
-
-namespace clang {
- namespace diag {
- enum {
-#define DIAG(ENUM,FLAGS,DESC) ENUM,
-#include "DiagnosticCommonKinds.def"
-#define ANALYSISSTART
-#include "DiagnosticAnalysisKinds.def"
- NUM_BUILTIN_ANALYSIS_DIAGNOSTICS
- };
- } // end namespace diag
-} // end namespace clang
-
-#endif