diff options
author | Martin Szulecki | 2009-12-12 10:07:42 +0100 |
---|---|---|
committer | Jonathan Beck | 2009-12-12 17:18:50 +0100 |
commit | e83197514fa18b611a7e3eec9b2a28029773f588 (patch) | |
tree | 850f2aa7388b582d4a9158350f7757563c99e15e | |
parent | d43de518a6bc46b1185fc878b52018f51c84a1b8 (diff) | |
download | libplist-e83197514fa18b611a7e3eec9b2a28029773f588.tar.gz libplist-e83197514fa18b611a7e3eec9b2a28029773f588.tar.bz2 |
Add stdint.i to fix usage of Integer nodes in Python bindings
-rw-r--r-- | swig/plist.i | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swig/plist.i b/swig/plist.i index 278ca7a..2458f39 100644 --- a/swig/plist.i +++ b/swig/plist.i @@ -7,7 +7,7 @@ %} %include "std_string.i" - +%include "stdint.i" %typemap(out) std::vector<char> { $result = SWIG_FromCharPtrAndSize((const char*)&($1[0]),(int)($1.size())); |