summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2018-05-06 12:13:15 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2018-05-06 12:13:15 +0100
commit3e0b62db23c37790ccd9e0e6059b99b12a877ef8 (patch)
treecc711dda42ca90d10ac56d01c78e9c792ce428ef
parentVector (diff)
downloadlibjsonpp-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.cpp4
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++) ;