summaryrefslogtreecommitdiffstats
path: root/src/Integer.cpp
diff options
context:
space:
mode:
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);