Comment consistency
This commit is contained in:
parent
ca681e6ca7
commit
e4da68ffe7
33
json.cpp.rl
33
json.cpp.rl
@ -39,9 +39,8 @@
|
|||||||
using namespace std;
|
using namespace std;
|
||||||
using namespace util;
|
using namespace util;
|
||||||
|
|
||||||
//
|
//-----------------------------------------------------------------------------
|
||||||
// Parsing
|
// Parsing
|
||||||
//
|
|
||||||
|
|
||||||
struct parse_context {
|
struct parse_context {
|
||||||
parse_context(json::node *_root):
|
parse_context(json::node *_root):
|
||||||
@ -237,9 +236,8 @@ struct parse_context {
|
|||||||
}%%
|
}%%
|
||||||
|
|
||||||
|
|
||||||
//
|
//-----------------------------------------------------------------------------
|
||||||
// External support
|
// External support
|
||||||
//
|
|
||||||
|
|
||||||
template <>
|
template <>
|
||||||
bool
|
bool
|
||||||
@ -256,9 +254,8 @@ is_integer (const json::node &node) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//
|
//-----------------------------------------------------------------------------
|
||||||
// Node
|
// Node
|
||||||
//
|
|
||||||
|
|
||||||
std::unique_ptr<json::node>
|
std::unique_ptr<json::node>
|
||||||
json::parse (const boost::filesystem::path &path) {
|
json::parse (const boost::filesystem::path &path) {
|
||||||
@ -307,9 +304,8 @@ json::write (const json::node &node, std::ostream &os)
|
|||||||
{ node.write (os); }
|
{ node.write (os); }
|
||||||
|
|
||||||
|
|
||||||
//
|
//-----------------------------------------------------------------------------
|
||||||
// Type conversion
|
// Type conversion
|
||||||
//
|
|
||||||
|
|
||||||
const json::object&
|
const json::object&
|
||||||
json::node::as_object (void) const
|
json::node::as_object (void) const
|
||||||
@ -341,9 +337,8 @@ json::node::as_null (void) const
|
|||||||
{ throw type_error ("node is not a null"); }
|
{ throw type_error ("node is not a null"); }
|
||||||
|
|
||||||
|
|
||||||
//
|
//-----------------------------------------------------------------------------
|
||||||
// Global operatoers
|
// Global operatoers
|
||||||
//
|
|
||||||
|
|
||||||
bool
|
bool
|
||||||
json::node::operator!= (const node &rhs) const
|
json::node::operator!= (const node &rhs) const
|
||||||
@ -369,9 +364,8 @@ json::node::operator[] (unsigned int idx) const
|
|||||||
{ return as_array()[idx]; }
|
{ return as_array()[idx]; }
|
||||||
|
|
||||||
|
|
||||||
//
|
//-----------------------------------------------------------------------------
|
||||||
// Object
|
// Object
|
||||||
//
|
|
||||||
|
|
||||||
json::object::~object ()
|
json::object::~object ()
|
||||||
{ ; }
|
{ ; }
|
||||||
@ -461,9 +455,8 @@ json::object::write (std::ostream &os) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//
|
//-----------------------------------------------------------------------------
|
||||||
// Array
|
// Array
|
||||||
//
|
|
||||||
|
|
||||||
json::array::~array()
|
json::array::~array()
|
||||||
{ ; }
|
{ ; }
|
||||||
@ -503,9 +496,8 @@ json::array::write (std::ostream &os) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//
|
//-----------------------------------------------------------------------------
|
||||||
// String
|
// String
|
||||||
//
|
|
||||||
|
|
||||||
std::ostream&
|
std::ostream&
|
||||||
json::string::write (std::ostream &os) const {
|
json::string::write (std::ostream &os) const {
|
||||||
@ -524,9 +516,8 @@ json::string::operator ==(const char *rhs) const
|
|||||||
{ return rhs == m_value; }
|
{ return rhs == m_value; }
|
||||||
|
|
||||||
|
|
||||||
//
|
//-----------------------------------------------------------------------------
|
||||||
// Number
|
// Number
|
||||||
//
|
|
||||||
|
|
||||||
std::ostream&
|
std::ostream&
|
||||||
json::number::write (std::ostream &os) const {
|
json::number::write (std::ostream &os) const {
|
||||||
@ -540,9 +531,8 @@ json::number::operator ==(const json::number &rhs) const
|
|||||||
{ return almost_equal (rhs.m_value, m_value); }
|
{ return almost_equal (rhs.m_value, m_value); }
|
||||||
|
|
||||||
|
|
||||||
//
|
//-----------------------------------------------------------------------------
|
||||||
// Boolean
|
// Boolean
|
||||||
//
|
|
||||||
|
|
||||||
std::ostream&
|
std::ostream&
|
||||||
json::boolean::write (std::ostream &os) const {
|
json::boolean::write (std::ostream &os) const {
|
||||||
@ -555,9 +545,8 @@ json::boolean::operator ==(const json::boolean &rhs) const
|
|||||||
{ return rhs.m_value == m_value; }
|
{ return rhs.m_value == m_value; }
|
||||||
|
|
||||||
|
|
||||||
//
|
//-----------------------------------------------------------------------------
|
||||||
// Null
|
// Null
|
||||||
//
|
|
||||||
|
|
||||||
std::ostream&
|
std::ostream&
|
||||||
json::null::write (std::ostream &os) const {
|
json::null::write (std::ostream &os) const {
|
||||||
|
Loading…
Reference in New Issue
Block a user