update structures; fix some minor compile warnings

develop
Ben Lubar 2020-02-05 12:35:43 -06:00
parent 321d948f8d
commit 5db7d518ee
No known key found for this signature in database
GPG Key ID: 92939677AB59EDA4
3 changed files with 3 additions and 7 deletions

@ -81,7 +81,7 @@ struct Persistence::LegacyData
}
json["i"] = std::move(ints);
return std::move(json);
return json;
}
};

@ -1 +1 @@
Subproject commit b1045ecf01ecc710d6e815025f8f95c821b04e55
Subproject commit 6a25d792c2482f36ff53347346f0689d9c4b47b2

@ -160,14 +160,10 @@ public:
}
void Print()
{
char buffer1[256] = {0};
char buffer2[256] = {0};
for( auto v : m_numbers )
{
sprintf( buffer2, "%s%" PRId64, buffer1, v );
sprintf( buffer1, "%s ", buffer2 );
cout->print( "%" PRId64 " ", v );
}
cout->print( "%s", buffer1 );
}
};