Inline some deprecated filesystem methods, so that they can be included in more than one compile unit.

[SVN r64246]
This commit is contained in:
Daniel James 2010-07-22 07:49:05 +00:00
parent 57d282b1d5
commit 480dab0416

View File

@ -25,17 +25,17 @@ namespace boost
# ifndef BOOST_FILESYSTEM_NO_DEPRECATED
std::string extension(const path & p)
inline std::string extension(const path & p)
{
return p.extension().string();
}
std::string basename(const path & p)
inline std::string basename(const path & p)
{
return p.stem().string();
}
path change_extension( const path & p, const path & new_extension )
inline path change_extension( const path & p, const path & new_extension )
{
path new_p( p );
new_p.replace_extension( new_extension );