| 725 | // decomposition -------------------------------------------------------------------// |
| 726 | |
| 727 | BOOST_FILESYSTEM_DECL size_type path_algorithms::find_root_name_size(path const& p) |
| 728 | { |
| 729 | size_type root_name_size = 0; |
| 730 | find_root_directory_start(p.m_pathname.c_str(), p.m_pathname.size(), root_name_size); |
| 731 | return root_name_size; |
| 732 | } |
| 733 | |
| 734 | BOOST_FILESYSTEM_DECL size_type path_algorithms::find_root_path_size(path const& p) |
| 735 | { |
nothing calls this directly
no test coverage detected