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