mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-06 03:22:44 +02:00
Fix string to float conversion for systems using anything other than a period as decimal separator
This commit is contained in:
parent
cc69f9cb7d
commit
538a80c5ab
1 changed files with 6 additions and 1 deletions
|
@ -4,6 +4,7 @@
|
|||
//
|
||||
// Created by Seth Alves on 3/7/15.
|
||||
// Copyright 2013 High Fidelity, Inc.
|
||||
// Copyright 2022 Overte e.V.
|
||||
//
|
||||
// Distributed under the Apache License, Version 2.0.
|
||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||
|
@ -59,7 +60,11 @@ const hifi::ByteArray OBJTokenizer::getLineAsDatum() {
|
|||
}
|
||||
|
||||
float OBJTokenizer::getFloat() {
|
||||
return std::stof((nextToken() != OBJTokenizer::DATUM_TOKEN) ? nullptr : getDatum().data());
|
||||
std::istringstream ss((nextToken() != OBJTokenizer::DATUM_TOKEN) ? nullptr : getDatum().data());
|
||||
ss.imbue(std::locale::classic());
|
||||
float f;
|
||||
ss >> f;
|
||||
return f;
|
||||
}
|
||||
|
||||
int OBJTokenizer::nextToken(bool allowSpaceChar /*= false*/) {
|
||||
|
|
Loading…
Reference in a new issue