Fix location bug for real values (',' can be used instead of '.')

This commit is contained in:
Grégory Soutadé 2022-03-12 21:12:07 +01:00
parent 00be31a318
commit 114ef1c5d1
1 changed files with 7 additions and 2 deletions

View File

@ -18,6 +18,7 @@
*/
#include <unistd.h>
#include <algorithm>
#include "uPDFTypes.h"
#include "uPDFParser_common.h"
@ -54,11 +55,15 @@ namespace uPDFParser
std::string Real::str()
{
std::string res;
std::string sign("");
if (_signed && _value >= 0)
sign = "+";
return " " + sign + std::to_string(_value);
res = " " + sign + std::to_string(_value);
std::replace( res.begin(), res.end(), ',', '.');
return res;
}
std::string Array::str()
@ -85,7 +90,7 @@ namespace uPDFParser
{
std::string res("<<");
std::map<std::string, DataType*>::iterator it;
for(it = _value.begin(); it!=_value.end(); it++)
{
res += std::string("/") + it->first;