File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
clang/include/clang/Analysis/FlowSensitive Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -45,12 +45,12 @@ class DataflowValues {
45
45
// ===--------------------------------------------------------------------===//
46
46
47
47
public:
48
- typedef typename ValueTypes::ValTy ValTy;
49
- typedef typename ValueTypes::AnalysisDataTy AnalysisDataTy;
50
- typedef _AnalysisDirTag AnalysisDirTag ;
51
- typedef llvm::DenseMap<ProgramPoint, ValTy> EdgeDataMapTy ;
52
- typedef llvm::DenseMap<const CFGBlock*, ValTy> BlockDataMapTy ;
53
- typedef llvm::DenseMap<const Stmt*, ValTy> StmtDataMapTy ;
48
+ using ValTy = typename ValueTypes::ValTy;
49
+ using AnalysisDataTy = typename ValueTypes::AnalysisDataTy;
50
+ using AnalysisDirTag = _AnalysisDirTag ;
51
+ using EdgeDataMapTy = llvm::DenseMap<ProgramPoint, ValTy>;
52
+ using BlockDataMapTy = llvm::DenseMap<const CFGBlock *, ValTy>;
53
+ using StmtDataMapTy = llvm::DenseMap<const Stmt *, ValTy>;
54
54
55
55
// ===--------------------------------------------------------------------===//
56
56
// Predicates.
You can’t perform that action at this time.
0 commit comments