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, '('); swallow(is, '(');
// read values // read values
is >> rep._m_xy; is >> iformat(rep._m_xy);
swallow(is, ','); swallow(is, ',');
is >> rep._m_x; is >> iformat(rep._m_x);
swallow(is, ','); swallow(is, ',');
is >> rep._m_curve; is >> iformat(rep._m_curve);
swallow(is, ','); swallow(is, ',');
is >> rep._m_arcno; is >> iformat(rep._m_arcno);
swallow(is, ','); swallow(is, ',');
is >> rep._m_location; is >> rep._m_location;