[clang] 0539b45 - [analyzer][NFC] Remove unused Analyses enum
Balazs Benics via cfe-commits
cfe-commits at lists.llvm.org
Mon Jun 13 12:20:48 PDT 2022
Author: Balazs Benics
Date: 2022-06-13T21:19:55+02:00
New Revision: 0539b456b7889f9958c07a3c85f9e87bb227c355
URL: https://github.com/llvm/llvm-project/commit/0539b456b7889f9958c07a3c85f9e87bb227c355
DIFF: https://github.com/llvm/llvm-project/commit/0539b456b7889f9958c07a3c85f9e87bb227c355.diff
LOG: [analyzer][NFC] Remove unused Analyses enum
Reviewed By: martong
Differential Revision: https://reviews.llvm.org/D127485
Added:
Modified:
clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
Removed:
################################################################################
diff --git a/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h b/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
index 0c4f9e6facb69..625f6a0ed08d0 100644
--- a/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
+++ b/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
@@ -33,13 +33,6 @@ class CheckerBase;
} // namespace ento
-/// Analysis - Set of available source code analyses.
-enum Analyses {
-#define ANALYSIS(NAME, CMDFLAG, DESC, SCOPE) NAME,
-#include "clang/StaticAnalyzer/Core/Analyses.def"
-NumAnalyses
-};
-
/// AnalysisStores - Set of available analysis store models.
enum AnalysisStores {
#define ANALYSIS_STORE(NAME, CMDFLAG, DESC, CREATFN) NAME##Model,
More information about the cfe-commits
mailing list