| 1366 | |
| 1367 | template< typename Source > |
| 1368 | BOOST_FORCEINLINE typename std::enable_if< |
| 1369 | detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >::value, |
| 1370 | path |
| 1371 | >::type operator/(path lhs, Source const& rhs) |
| 1372 | { |
| 1373 | lhs.append(rhs); |
| 1374 | return lhs; |
| 1375 | } |
| 1376 | |
| 1377 | // inserters and extractors |
| 1378 | // use boost::io::quoted() to handle spaces in paths |
nothing calls this directly
no outgoing calls
no test coverage detected