fix: add _type suffix to value::xxx_type

This commit is contained in:
ToruNiina
2019-06-17 20:34:13 +09:00
parent f36b39c04f
commit 57b5545ba2

View File

@@ -269,10 +269,10 @@ class basic_value
using integer_type = ::toml::integer;
using floating_type = ::toml::floating;
using string_type = ::toml::string;
using local_time = ::toml::local_time;
using local_date = ::toml::local_date;
using local_datetime = ::toml::local_datetime;
using offset_datetime = ::toml::offset_datetime;
using local_time_type = ::toml::local_time;
using local_date_type = ::toml::local_date;
using local_datetime_type = ::toml::local_datetime;
using offset_datetime_type = ::toml::offset_datetime;
using array_type = Array<value_type>;
using table_type = Table<key_type, value_type>;