| 508 | #define STRINGIFY(x) STRINGIFY2(x) |
| 509 | |
| 510 | const char* GetAppVersionString() |
| 511 | { |
| 512 | #ifdef GIT_COMMIT_HASH |
| 513 | return "V1.10 [Nightly " STRINGIFY(GIT_COMMIT_HASH) "]"; |
| 514 | #else |
| 515 | return "V1.10"; |
| 516 | #endif |
| 517 | } |
| 518 | |
| 519 | std::string FormatDuration(int seconds) |
| 520 | { |
no outgoing calls
no test coverage detected