diff --git a/toml/types.hpp b/toml/types.hpp index 31e7717..e752507 100644 --- a/toml/types.hpp +++ b/toml/types.hpp @@ -33,6 +33,9 @@ using floating = double; // "float" is a keyward, cannot use it here. // default toml::value and default array/table using value = basic_value; +// TODO: consider to move these after including `value.hpp` +using array = std::vector; // typename value::array_type; +using table = std::unordered_map; // typename value::table_type; enum class value_t : std::uint8_t {