diff options
author | Matthias Klose | 2011-06-13 17:12:35 +0200 |
---|---|---|
committer | Nikias Bassen | 2011-06-13 17:12:35 +0200 |
commit | 55530ad32f1ef658b48764bca1fac6ca3a58d797 (patch) | |
tree | 53523d72f7b6346d03fec3050a8bda2d91c709ad | |
parent | fde488d1b961f77f27a43cf8732b95ab65baf471 (diff) | |
download | libplist-55530ad32f1ef658b48764bca1fac6ca3a58d797.tar.gz libplist-55530ad32f1ef658b48764bca1fac6ca3a58d797.tar.bz2 |
Add missing include <cstddef> to fix FTBFS with GCC 4.6
-rw-r--r-- | swig/plist.i | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/swig/plist.i b/swig/plist.i index 2458f39..172a330 100644 --- a/swig/plist.i +++ b/swig/plist.i @@ -4,6 +4,7 @@ %{ /* Includes the header in the wrapper code */ #include <plist/plist++.h> + #include <cstddef> %} %include "std_string.i" |