🚨 fix warning

This commit is contained in:
Niels Lohmann
2024-04-14 12:38:17 +02:00
parent 760f54f993
commit e8cfe1f712
3 changed files with 15 additions and 3 deletions
+3 -3
View File
@@ -1515,9 +1515,9 @@ NLOHMANN_JSON_SERIALIZE_ENUM(cards,
enum TaskState
{
TS_STOPPED,
TS_RUNNING,
TS_COMPLETED,
TS_STOPPED = 0,
TS_RUNNING = 1,
TS_COMPLETED = 2,
TS_INVALID = -1,
};