summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6c21d04)
raw | patch | inline | side by side (parent: 6c21d04)
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | |
Wed, 23 Mar 2016 19:20:18 +0000 (21:20 +0200) | ||
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | |
Wed, 23 Mar 2016 19:20:18 +0000 (21:20 +0200) |
py/pykms.i | patch | blob | history |
diff --git a/py/pykms.i b/py/pykms.i
index 080165394c8fcf1fed0c32ccb594c374ed959c44..0939805b5e788313ff1897d8c9e6eaa27e026635 100644 (file)
--- a/py/pykms.i
+++ b/py/pykms.i
%template(CrtcVector) std::vector<kms::Crtc*>;
%template(EncoderVector) std::vector<kms::Encoder*>;
%template(PlaneVector) std::vector<kms::Plane*>;
-%template(map_u32_u64) std::map<uint32_t, uint64_t>;
+/* for some reason uint64_t doesn't compile on 64 bit pc */
+/* %template(map_u32_u64) std::map<uint32_t, uint64_t>; */
+%template(map_u32_u64) std::map<uint32_t, unsigned long long>;