Specialized stackwalker-output classes Console (printf):
| 31 | // Specialized stackwalker-output classes |
| 32 | // Console (printf): |
| 33 | class StackWalkerToConsole : public StackWalker |
| 34 | { |
| 35 | protected: |
| 36 | virtual void OnOutput(LPCSTR szText) { printf("%s", szText); } |
| 37 | }; |
| 38 | |
| 39 | void Func5() |
| 40 | { |
nothing calls this directly
no outgoing calls
no test coverage detected