| 308 | int ret = _wstat( to_wpath( full_path ).c_str(), &tagStat ); |
| 309 | #else |
| 310 | struct stat tagStat; |
| 311 | int ret = stat( full_path.c_str(), &tagStat ); |
| 312 | #endif |
| 313 | assert( ret == 0 && "Problem getting file size" ); |
no outgoing calls
no test coverage detected