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. --- include/plist/Utils.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/plist/Utils.h b/include/plist/Utils.h index 65bec7e..4cf6003 100644 --- a/include/plist/Utils.h +++ b/include/plist/Utils.h @@ -31,8 +31,8 @@ namespace PList { public: static Node* FromPlist(plist_t node, Node* parent = NULL); - static Structure* FromXml(const std::string& in); - static Structure* FromBin(const std::vector& in); + static Structure* FromXml(const std::string& xml); + static Structure* FromBin(const std::vector& bin); private: Utils(); -- cgit v1.1-32-gdbae