diff options
author | Jonathan Beck | 2009-10-26 20:33:36 +0100 |
---|---|---|
committer | Jonathan Beck | 2009-10-26 20:33:36 +0100 |
commit | a129688a888968286a30eeba7833629225c59fa0 (patch) | |
tree | 3daa1bed71a2d3ec60f24bc11ff116c02ccac003 /include/plist/Utils.h | |
parent | c1363bea107b15bdc10ce80671747be891661889 (diff) | |
download | libplist-a129688a888968286a30eeba7833629225c59fa0.tar.gz libplist-a129688a888968286a30eeba7833629225c59fa0.tar.bz2 |
Change name of input argument as 'in' is a reserved keyword in python.
Diffstat (limited to 'include/plist/Utils.h')
-rw-r--r-- | include/plist/Utils.h | 4 |
1 files changed, 2 insertions, 2 deletions
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<char>& in); + static Structure* FromXml(const std::string& xml); + static Structure* FromBin(const std::vector<char>& bin); private: Utils(); |