From 34eab875c541c6c2f40a8b3db712b2e7ef33b4cd Mon Sep 17 00:00:00 2001 From: Tim Landscheidt Date: Sun, 13 Jan 2019 17:48:58 +0000 Subject: Remove unused function py_dump_relaxed() The only user of py_dump_relaxed() was removed in commit 0bbb4f2f0cbaa6ffb5c7a2c018a3819cca0b2405. --- src/py_value.cc | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'src/py_value.cc') diff --git a/src/py_value.cc b/src/py_value.cc index f4f63946..486228c0 100644 --- a/src/py_value.cc +++ b/src/py_value.cc @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003-2018, John Wiegley. All rights reserved. + * Copyright (c) 2003-2019, John Wiegley. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are @@ -88,12 +88,6 @@ namespace { return buf.str(); } - string py_dump_relaxed(const value_t& value) { - std::ostringstream buf; - value.dump(buf, true); - return buf.str(); - } - void py_set_string(value_t& value, const string& str) { return value.set_string(str); } -- cgit v1.2.3