MCPcopy Create free account
hub / github.com/boostorg/filesystem / type operator/

Method type operator/

include/boost/filesystem/path.hpp:1368–1375  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1366
1367template< typename Source >
1368BOOST_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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected