use iformat

This commit is contained in:
Sébastien Loriot 2023-06-29 18:09:18 +02:00
parent 9e22fdfcb8
commit a32483d885
1 changed files with 4 additions and 4 deletions

View File

@ -736,13 +736,13 @@ public:
swallow(is, '(');
// read values
is >> rep._m_xy;
is >> iformat(rep._m_xy);
swallow(is, ',');
is >> rep._m_x;
is >> iformat(rep._m_x);
swallow(is, ',');
is >> rep._m_curve;
is >> iformat(rep._m_curve);
swallow(is, ',');
is >> rep._m_arcno;
is >> iformat(rep._m_arcno);
swallow(is, ',');
is >> rep._m_location;