File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
arccore/src/base/arccore/base Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -34,16 +34,16 @@ writeBytes(std::ostream& o) const
3434/* ---------------------------------------------------------------------------*/
3535
3636StringView StringView::
37- substring (Int64 pos) const
37+ subView (Int64 pos) const
3838{
39- return substring (pos, length () - pos);
39+ return subView (pos, length () - pos);
4040}
4141
4242/* ---------------------------------------------------------------------------*/
4343/* ---------------------------------------------------------------------------*/
4444
4545StringView StringView::
46- substring (Int64 pos, Int64 len) const
46+ subView (Int64 pos, Int64 len) const
4747{
4848 if (pos < 0 )
4949 pos = 0 ;
Original file line number Diff line number Diff line change @@ -184,10 +184,10 @@ class ARCCORE_BASE_EXPORT StringView
184184 void writeBytes (std::ostream& o) const ;
185185
186186 // ! Sous-chaîne commençant à la position \a pos
187- StringView substring (Int64 pos) const ;
187+ StringView subView (Int64 pos) const ;
188188
189189 // ! Sous-chaîne commençant à la position \a pos et de longueur \a len
190- StringView substring (Int64 pos,Int64 len) const ;
190+ StringView subView (Int64 pos,Int64 len) const ;
191191
192192 private:
193193
You can’t perform that action at this time.
0 commit comments