| 744 | |
| 745 | template< typename Source > |
| 746 | BOOST_FORCEINLINE typename std::enable_if< |
| 747 | detail::path_traits::is_path_source< typename std::remove_cv< Source >::type >::value, |
| 748 | path& |
| 749 | >::type append(Source const& source) |
| 750 | { |
| 751 | detail::path_traits::dispatch(source, append_op(*this)); |
| 752 | return *this; |
| 753 | } |
| 754 | |
| 755 | template< typename Source > |
| 756 | BOOST_FORCEINLINE typename std::enable_if< |
nothing calls this directly
no test coverage detected