From a129688a888968286a30eeba7833629225c59fa0 Mon Sep 17 00:00:00 2001 From: Jonathan Beck Date: Mon, 26 Oct 2009 20:33:36 +0100 Subject: Change name of input argument as 'in' is a reserved keyword in python. --- src/Utils.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/Utils.cpp') diff --git a/src/Utils.cpp b/src/Utils.cpp index a88b2ba..df003e7 100644 --- a/src/Utils.cpp +++ b/src/Utils.cpp @@ -89,18 +89,18 @@ static Structure* ImportStruct(plist_t root) return ret; } -Structure* Utils::FromXml(const std::string& in) +Structure* Utils::FromXml(const std::string& xml) { plist_t root = NULL; - plist_from_xml(in.c_str(), in.size(), &root); + plist_from_xml(xml.c_str(), xml.size(), &root); return ImportStruct(root); } -Structure* Utils::FromBin(const std::vector& in) +Structure* Utils::FromBin(const std::vector& bin) { plist_t root = NULL; - plist_from_bin(&in[0], in.size(), &root); + plist_from_bin(&bin[0], bin.size(), &root); return ImportStruct(root); -- cgit v1.1-32-gdbae