mirror of
https://github.com/boostorg/filesystem.git
synced 2026-01-29 07:32:12 +00:00
op= fix from Mark Bartosik
[SVN r33095]
This commit is contained in:
@@ -249,8 +249,10 @@ namespace boost
|
||||
~basic_path() {}
|
||||
|
||||
// assignments
|
||||
basic_path & operator=( const string_type & s ) { m_path=""; operator/=( s ); return *this; }
|
||||
basic_path & operator=( const value_type * s ) { m_path=""; operator/=( s ); return *this; }
|
||||
basic_path & operator=( const string_type & s )
|
||||
{ m_path.clear(); operator/=( s ); return *this; }
|
||||
basic_path & operator=( const value_type * s )
|
||||
{ m_path.clear(); operator/=( s ); return *this; }
|
||||
# ifndef BOOST_NO_MEMBER_TEMPLATES
|
||||
template <class InputIterator>
|
||||
basic_path & assign( InputIterator first, InputIterator last )
|
||||
|
||||
Reference in New Issue
Block a user