mirror of
https://github.com/ToruNiina/toml11.git
synced 2025-09-18 02:08:09 +08:00
fix: add _type suffix to value::xxx_type
This commit is contained in:
@@ -262,19 +262,19 @@ class basic_value
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
using comment_type = Comment;
|
using comment_type = Comment;
|
||||||
using key_type = ::toml::key;
|
using key_type = ::toml::key;
|
||||||
using value_type = basic_value<comment_type, Table, Array>;
|
using value_type = basic_value<comment_type, Table, Array>;
|
||||||
using boolean_type = ::toml::boolean;
|
using boolean_type = ::toml::boolean;
|
||||||
using integer_type = ::toml::integer;
|
using integer_type = ::toml::integer;
|
||||||
using floating_type = ::toml::floating;
|
using floating_type = ::toml::floating;
|
||||||
using string_type = ::toml::string;
|
using string_type = ::toml::string;
|
||||||
using local_time = ::toml::local_time;
|
using local_time_type = ::toml::local_time;
|
||||||
using local_date = ::toml::local_date;
|
using local_date_type = ::toml::local_date;
|
||||||
using local_datetime = ::toml::local_datetime;
|
using local_datetime_type = ::toml::local_datetime;
|
||||||
using offset_datetime = ::toml::offset_datetime;
|
using offset_datetime_type = ::toml::offset_datetime;
|
||||||
using array_type = Array<value_type>;
|
using array_type = Array<value_type>;
|
||||||
using table_type = Table<key_type, value_type>;
|
using table_type = Table<key_type, value_type>;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user