1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Handle legacy file versions.

This commit is contained in:
Bartosz Taudul
2019-08-12 12:16:48 +02:00
parent 54076e717c
commit 154c902e03
5 changed files with 49 additions and 15 deletions
+6
View File
@@ -47,6 +47,12 @@ struct UnsupportedVersion : public std::exception
int version;
};
struct LegacyVersion : public std::exception
{
LegacyVersion( int version ) : version ( version ) {}
int version;
};
struct LoadProgress
{
enum Stage