| 145 | |
| 146 | #if LOGURU_WITH_FILEABS |
| 147 | struct FileAbs |
| 148 | { |
| 149 | char path[PATH_MAX]; |
| 150 | char mode_str[4]; |
| 151 | Verbosity verbosity; |
| 152 | struct stat st; |
| 153 | FILE* fp; |
| 154 | bool is_reopening = false; // to prevent recursive call in file_reopen. |
| 155 | decltype(steady_clock::now()) last_check_time = steady_clock::now(); |
| 156 | }; |
| 157 | #else |
| 158 | typedef FILE* FileAbs; |
| 159 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected