| 350 | #else // !defined(BOOST_FILESYSTEM_USE_READDIR_R) |
| 351 | |
| 352 | int readdir_r_impl(dir_itr_imp& imp, struct dirent** result) |
| 353 | { |
| 354 | return ::readdir_r |
| 355 | ( |
| 356 | static_cast< DIR* >(imp.handle), |
| 357 | static_cast< struct dirent* >(get_dir_itr_imp_extra_data(&imp)), |
| 358 | result |
| 359 | ); |
| 360 | } |
| 361 | |
| 362 | int readdir_select_impl(dir_itr_imp& imp, struct dirent** result); |
| 363 |
nothing calls this directly
no test coverage detected