| 744 | } |
| 745 | |
| 746 | BOOST_FILESYSTEM_DECL path_algorithms::substring path_algorithms::find_root_directory(path const& p) |
| 747 | { |
| 748 | substring root_dir; |
| 749 | size_type root_name_size = 0; |
| 750 | root_dir.pos = find_root_directory_start(p.m_pathname.c_str(), p.m_pathname.size(), root_name_size); |
| 751 | root_dir.size = static_cast< std::size_t >(root_dir.pos < p.m_pathname.size()); |
| 752 | return root_dir; |
| 753 | } |
| 754 | |
| 755 | BOOST_FILESYSTEM_DECL path_algorithms::substring path_algorithms::find_relative_path(path const& p) |
| 756 | { |
nothing calls this directly
no test coverage detected