Remove redundant Variant-types initializations
This commit is contained in:
parent
963ffd8b94
commit
3b14f0334c
52 changed files with 118 additions and 118 deletions
|
|
@ -2839,7 +2839,7 @@ String String::substr(int p_from, int p_chars) const {
|
|||
return String(*this);
|
||||
}
|
||||
|
||||
String s = String();
|
||||
String s;
|
||||
s.copy_from_unchecked(&get_data()[p_from], p_chars);
|
||||
return s;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue