mirror of
https://github.com/boostorg/container.git
synced 2025-08-02 22:14:26 +02:00
Cosmetic indentation
This commit is contained in:
@@ -2144,8 +2144,9 @@ class basic_string
|
||||
//! <bReturns</b>: *this.
|
||||
basic_string& replace(const_iterator i1, const_iterator i2, std::initializer_list<CharT> il)
|
||||
{
|
||||
return this->replace( static_cast<size_type>(i1 - begin())
|
||||
, static_cast<size_type>(i2 - i1), il.begin(), il.size());
|
||||
return this->replace( static_cast<size_type>(i1 - this->cbegin())
|
||||
, static_cast<size_type>(i2 - i1)
|
||||
, il.begin(), il.size());
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user