File tree 2 files changed +5
-5
lines changed
arccore/src/base/arccore/base
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
34
34
/* ---------------------------------------------------------------------------*/
35
35
36
36
StringView StringView::
37
- substring (Int64 pos) const
37
+ subView (Int64 pos) const
38
38
{
39
- return substring (pos, length () - pos);
39
+ return subView (pos, length () - pos);
40
40
}
41
41
42
42
/* ---------------------------------------------------------------------------*/
43
43
/* ---------------------------------------------------------------------------*/
44
44
45
45
StringView StringView::
46
- substring (Int64 pos, Int64 len) const
46
+ subView (Int64 pos, Int64 len) const
47
47
{
48
48
if (pos < 0 )
49
49
pos = 0 ;
Original file line number Diff line number Diff line change @@ -184,10 +184,10 @@ class ARCCORE_BASE_EXPORT StringView
184
184
void writeBytes (std::ostream& o) const ;
185
185
186
186
// ! Sous-chaîne commençant à la position \a pos
187
- StringView substring (Int64 pos) const ;
187
+ StringView subView (Int64 pos) const ;
188
188
189
189
// ! 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 ;
191
191
192
192
private:
193
193
You can’t perform that action at this time.
0 commit comments