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

Add trace load failure exception.

This commit is contained in:
Bartosz Taudul
2023-12-31 13:55:06 +01:00
parent d64307be91
commit 5062bef69a
2 changed files with 11 additions and 1 deletions
+6
View File
@@ -64,6 +64,12 @@ struct LegacyVersion : public std::exception
int version;
};
struct LoadFailure : public std::exception
{
LoadFailure( const char* msg ) : msg( msg ) {}
std::string msg;
};
struct LoadProgress
{
enum Stage