1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-17 23:37:06 +01:00

Merge pull request #359 from paboyle/feature/serialisation-update

Feature/serialisation update
This commit is contained in:
Peter Boyle
2021-09-16 10:24:52 -04:00
committed by GitHub
11 changed files with 457 additions and 134 deletions

View File

@ -417,7 +417,7 @@ public:
stream << "{";
for (int j = 0; j < N; j++) {
stream << o._internal[i][j];
if (i < N - 1) stream << ",";
if (j < N - 1) stream << ",";
}
stream << "}";
if (i != N - 1) stream << "\n\t\t";