| 17 | static std::unordered_map<std::string, int> countMp; |
| 18 | |
| 19 | void func_begin(std::string funcName) { |
| 20 | #ifdef LOG_FUNC_VISIT |
| 21 | logIndentSize++; |
| 22 | for (int i = 0; i < logIndentSize; i++) std::cout << LOG_INDENT; |
| 23 | std::cout << funcName << " begin.." << std::endl; |
| 24 | #endif |
| 25 | } |
| 26 | |
| 27 | void func_end(std::string funcName) { |
| 28 | countMp[funcName]++; |
nothing calls this directly
no outgoing calls
no test coverage detected