From d2e54859733e27dd94fcb900f075cc3bfb62729b Mon Sep 17 00:00:00 2001 From: Jacob Potter Date: Mon, 27 Jan 2014 10:59:17 -0800 Subject: [PATCH] Spacing fix --- json11.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/json11.cpp b/json11.cpp index 9666db8..d2bb65e 100644 --- a/json11.cpp +++ b/json11.cpp @@ -238,7 +238,7 @@ static const Json json_null; Json::Type Json::type() const { return m_ptr->type(); } double Json::number_value() const { return m_ptr->number_value(); } -int Json::int_value() const { return m_ptr->int_value(); } +int Json::int_value() const { return m_ptr->int_value(); } bool Json::bool_value() const { return m_ptr->bool_value(); } const string & Json::string_value() const { return m_ptr->string_value(); } const vector & Json::array_items() const { return m_ptr->array_items(); }