Double precision of String.split_floats
This commit is contained in:
parent
8aafcf9d2a
commit
e791f4fce2
6 changed files with 16 additions and 15 deletions
|
|
@ -1256,8 +1256,8 @@ Vector<String> String::rsplit(const String &p_splitter, bool p_allow_empty, int
|
|||
return ret;
|
||||
}
|
||||
|
||||
Vector<float> String::split_floats(const String &p_splitter, bool p_allow_empty) const {
|
||||
Vector<float> ret;
|
||||
Vector<double> String::split_floats(const String &p_splitter, bool p_allow_empty) const {
|
||||
Vector<double> ret;
|
||||
int from = 0;
|
||||
int len = length();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue