Fixed #554: using 64bit coordinates for RVE reader (#555)

This commit is contained in:
Matthias Köfferlein 2020-05-11 19:24:29 +02:00 committed by GitHub
parent edba2bd7a0
commit 296ec5aebf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -238,7 +238,7 @@ public:
ex.read_word (cell_name, "_.$-");
int m11 = 1, m12 = 0, m21 = 0, m22 = 1;
int x = 0, y = 0;
int64_t x = 0, y = 0;
bool cspace = (ex.test ("c") || ex.test ("C"));
@ -348,7 +348,7 @@ public:
}
int x, y;
int64_t x, y;
ex.read (x);
ex.read (y);
ex.expect_end ();
@ -376,11 +376,11 @@ public:
}
int x1, y1;
int64_t x1, y1;
ex.read (x1);
ex.read (y1);
int x2, y2;
int64_t x2, y2;
ex.read (x2);
ex.read (y2);