| 57 | } |
| 58 | |
| 59 | void ParamNumberAnalysisReport::add(std::string FuncName, unsigned ParamNum, |
| 60 | unsigned BeginIndex) { |
| 61 | ParamBeginMap.emplace(FuncName, BeginIndex); |
| 62 | ParamSizeMap.emplace(FuncName, ParamNum); |
| 63 | } |
| 64 | |
| 65 | const std::map<std::string, unsigned> & |
| 66 | ParamNumberAnalysisReport::getParamBeginMap() const { |