| 31 | #include "folder/Sample.h" |
| 32 | |
| 33 | class SimpleTest { |
| 34 | int number; |
| 35 | |
| 36 | public: |
| 37 | SimpleTest(int number) |
| 38 | : number(number) |
| 39 | {} |
| 40 | |
| 41 | void logSomething(); |
| 42 | void wholeBunchOfLogStatements(); |
| 43 | inline void logStatementsInHeader() { |
| 44 | /// These should be assigned different ids due to line number |
| 45 | NANO_LOG(NOTICE, "In the header, I am %d", number); |
| 46 | NANO_LOG(NOTICE, "In the header, I am %d x2", number); |
| 47 | } |
| 48 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected