fix: array

This commit is contained in:
3lswear
2022-01-07 01:41:21 +03:00
parent 542252489c
commit acac336b21

View File

@@ -26,7 +26,7 @@ class toml_node;
/* typedef std::vector<TOMLMap *> TOMLArray; */
/* typedef std::vector<TOMLArray *> TOMLArrayOfMap; */
typedef std::map<std::string, toml_node *> TOMLMap; // = JSONObject
typedef std::vector<std::string, TOMLMap *> TOMLMapArray;
typedef std::vector<TOMLMap *> TOMLMapArray;
typedef std::vector<toml_node *> TOMLArray;
void display(TOMLMap *config);