From 407d9223f6d84e169a34d675544e4fd94fc41c19 Mon Sep 17 00:00:00 2001 From: ToruNiina Date: Mon, 3 Jun 2019 22:01:47 +0900 Subject: [PATCH] feat: :boom: is_float -> is_floating --- toml/value.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toml/value.hpp b/toml/value.hpp index e8f5805..efe01e8 100644 --- a/toml/value.hpp +++ b/toml/value.hpp @@ -905,7 +905,7 @@ class basic_value bool is_uninitialized() const noexcept {return this->is(value_t::empty );} bool is_boolean() const noexcept {return this->is(value_t::boolean );} bool is_integer() const noexcept {return this->is(value_t::integer );} - bool is_float() const noexcept {return this->is(value_t::floating );} + bool is_floating() const noexcept {return this->is(value_t::floating );} bool is_string() const noexcept {return this->is(value_t::string );} bool is_offset_datetime() const noexcept {return this->is(value_t::offset_datetime);} bool is_local_datetime() const noexcept {return this->is(value_t::local_datetime );}