changed TomlValue.value to anonymous union

This commit is contained in:
2025-11-27 01:32:34 +05:00
parent 711cc70b68
commit 6978bb2afe
7 changed files with 47 additions and 47 deletions

View File

@@ -102,7 +102,7 @@ typedef struct TomlValue {
TomlArray* array;
TomlTable* table;
TomlDateTime* dt;
} value;
};
} TomlValue;
List_declare(TomlValue);