| 109 | # endif |
| 110 | |
| 111 | inline bool is_separator(fs::path::value_type c) |
| 112 | { |
| 113 | return c == separator |
| 114 | # ifdef BOOST_WINDOWS_API |
| 115 | || c == path::preferred_separator |
| 116 | # endif |
| 117 | ; |
| 118 | } |
| 119 | |
| 120 | bool is_root_separator(const string_type& str, size_type pos); |
| 121 | // pos is position of the separator |
no outgoing calls
no test coverage detected