diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-05-06 12:13:15 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-05-06 12:13:15 +0100 |
commit | 3e0b62db23c37790ccd9e0e6059b99b12a877ef8 (patch) | |
tree | cc711dda42ca90d10ac56d01c78e9c792ce428ef | |
parent | Vector (diff) | |
download | libjsonpp-3e0b62db23c37790ccd9e0e6059b99b12a877ef8.tar.bz2 libjsonpp-3e0b62db23c37790ccd9e0e6059b99b12a877ef8.tar.xz libjsonpp-3e0b62db23c37790ccd9e0e6059b99b12a877ef8.zip |
Remove dead code
This function was removed from the public interface long ago
-rw-r--r-- | libjsonpp/parse.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libjsonpp/parse.cpp b/libjsonpp/parse.cpp index 3606258..4f82aac 100644 --- a/libjsonpp/parse.cpp +++ b/libjsonpp/parse.cpp @@ -24,10 +24,6 @@ namespace json { return parseValue(stream); } - Object parseObject(const Glib::ustring & s) { - return std::get<Object>(parseValue(s)); - } - Value parseValue(Glib::ustring::const_iterator & s) { Glib::ustring::const_iterator start = s; while (*s++) ; |