Fix string conversion under Clang

This commit is contained in:
WanCW 2015-01-12 20:03:41 +08:00
parent bd05c7a18a
commit 36f6199898
3 changed files with 3 additions and 2 deletions

View file

@ -442,7 +442,7 @@ json::object_t json::get() const
}
}
json::operator const std::string() const
json::operator std::string() const
{
return get<std::string>();
}

View file

@ -175,7 +175,7 @@ class json
T get() const;
/// implicit conversion to string representation
operator const std::string() const;
operator std::string() const;
/// implicit conversion to integer (only for numbers)
operator int() const;
/// implicit conversion to double (only for numbers)