| 350 | int ret = _wstat(to_wpath(full_path).c_str(), &tagStat); |
| 351 | #else |
| 352 | struct stat tagStat; |
| 353 | int ret = stat(full_path.c_str(), &tagStat); |
| 354 | #endif |
| 355 | size_t st_size = ret == 0 ? tagStat.st_size : 0; |
no outgoing calls
no test coverage detected