| 25 | } |
| 26 | |
| 27 | void func_end(std::string funcName) { |
| 28 | countMp[funcName]++; |
| 29 | #ifdef LOG_FUNC_VISIT |
| 30 | for (int i = 0; i < logIndentSize; i++) std::cout << LOG_INDENT; |
| 31 | logIndentSize--; |
| 32 | std::cout << funcName << " end.." << std::endl; |
| 33 | #endif |
| 34 | } |
| 35 | |
| 36 | #define LOGVAR(arg) \ |
| 37 | for (int i = 0; i < logIndentSize; i++) std::cout << LOG_INDENT; \ |
nothing calls this directly
no outgoing calls
no test coverage detected