Unneeded namespace qualification for json::parse
This commit is contained in:
parent
0fe4726d9f
commit
a13c1b9183
10
json.cpp.rl
10
json.cpp.rl
@ -234,18 +234,17 @@ struct parse_context {
|
||||
* Node
|
||||
*/
|
||||
|
||||
namespace json {
|
||||
std::unique_ptr<json::node>
|
||||
parse (const boost::filesystem::path &path)
|
||||
json::parse (const boost::filesystem::path &path)
|
||||
{ return parse ((const char *)slurp (path)); }
|
||||
|
||||
|
||||
std::unique_ptr<json::node>
|
||||
parse (const std::string &path)
|
||||
json::parse (const std::string &path)
|
||||
{ return parse (path.c_str (), path.c_str () + path.size ()); }
|
||||
|
||||
std::unique_ptr<json::node>
|
||||
parse (const char *start,
|
||||
json::parse (const char *start,
|
||||
const char *stop) {
|
||||
bool __success = true;
|
||||
json::node *__root = NULL;
|
||||
@ -271,9 +270,8 @@ namespace json {
|
||||
|
||||
|
||||
std::unique_ptr<json::node>
|
||||
parse (const char *start)
|
||||
json::parse (const char *start)
|
||||
{ return parse (start, start + strlen (start)); }
|
||||
}
|
||||
|
||||
|
||||
const json::object&
|
||||
|
Loading…
Reference in New Issue
Block a user