| 3314 | } |
| 3315 | |
| 3316 | static void getLocaltime(struct tm <ime) |
| 3317 | { |
| 3318 | time_t t; |
| 3319 | time(&t); |
| 3320 | #ifndef _WIN32 |
| 3321 | // NOLINTNEXTLINE(misc-include-cleaner) - false positive |
| 3322 | localtime_r(&t, <ime); |
| 3323 | #else |
| 3324 | localtime_s(<ime, &t); |
| 3325 | #endif |
| 3326 | } |
| 3327 | |
| 3328 | static std::string getDateDefine(const struct tm *timep) |
| 3329 | { |