1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-31 10:24:23 +03:00

🚨 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

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,
};