From 57b5545ba275c50a60c08ad1abf16a11f6139bf8 Mon Sep 17 00:00:00 2001 From: ToruNiina Date: Mon, 17 Jun 2019 20:34:13 +0900 Subject: [PATCH] fix: add _type suffix to value::xxx_type --- toml/value.hpp | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/toml/value.hpp b/toml/value.hpp index 48e6814..d1962f7 100644 --- a/toml/value.hpp +++ b/toml/value.hpp @@ -262,19 +262,19 @@ class basic_value public: - using comment_type = Comment; - using key_type = ::toml::key; - using value_type = basic_value; - using boolean_type = ::toml::boolean; - 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 array_type = Array; - using table_type = Table; + using comment_type = Comment; + using key_type = ::toml::key; + using value_type = basic_value; + using boolean_type = ::toml::boolean; + using integer_type = ::toml::integer; + using floating_type = ::toml::floating; + using string_type = ::toml::string; + 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; + using table_type = Table; public: