summaryrefslogtreecommitdiffstats
path: root/src/Integer.cpp
diff options
context:
space:
mode:
authorGravatar Jonathan Beck2009-10-15 19:28:30 +0200
committerGravatar Jonathan Beck2009-10-15 19:28:30 +0200
commit8186a9d371b2a31122643f75c65cef4e438ac97b (patch)
treef059e0199ac4b8b0425c910a11f595b42490448a /src/Integer.cpp
parenta922b714c9b75fdc67735d674758d4eaedfd32f9 (diff)
downloadlibplist-8186a9d371b2a31122643f75c65cef4e438ac97b.tar.gz
libplist-8186a9d371b2a31122643f75c65cef4e438ac97b.tar.bz2
Fix various mistakes in C++ bindings.
Diffstat (limited to 'src/Integer.cpp')
-rw-r--r--src/Integer.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Integer.cpp b/src/Integer.cpp
index d4a7645..2a7429a 100644
--- a/src/Integer.cpp
+++ b/src/Integer.cpp
@@ -28,6 +28,10 @@ Integer::Integer() : Node(PLIST_UINT)
28{ 28{
29} 29}
30 30
31Integer::Integer(plist_t node) : Node(node)
32{
33}
34
31Integer::Integer(uint64_t i) : Node(PLIST_UINT) 35Integer::Integer(uint64_t i) : Node(PLIST_UINT)
32{ 36{
33 plist_set_uint_val(_node, i); 37 plist_set_uint_val(_node, i);