Skip to content

Commit db27187

Browse files
committed
fix(test): Attempting to remove the variables to see if the debug windows build is a compiler issue
1 parent bbe7f3a commit db27187

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/utils.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,7 @@ std::string String::trim(const std::string& line) {
7474

7575
double String::convert_to_double(const std::string& value, double default_value) {
7676
double converted_value = default_value;
77-
auto begin = value.begin();
78-
auto end = value.end();
79-
fast_float::from_chars(&(*begin), &(*end), converted_value);
77+
fast_float::from_chars(&(*value.begin()), &(*value.end()), converted_value);
8078
return converted_value;
8179
}
8280

0 commit comments

Comments
 (0)