summaryrefslogtreecommitdiffstats
path: root/src/Real.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Real.cpp')
-rw-r--r--src/Real.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Real.cpp b/src/Real.cpp
index e527f6d..a877b40 100644
--- a/src/Real.cpp
+++ b/src/Real.cpp
@@ -24,11 +24,11 @@
24namespace PList 24namespace PList
25{ 25{
26 26
27Real::Real() : Node(PLIST_REAL) 27Real::Real(Node* parent) : Node(PLIST_REAL, parent)
28{ 28{
29} 29}
30 30
31Real::Real(plist_t node) : Node(node) 31Real::Real(plist_t node, Node* parent) : Node(node, parent)
32{ 32{
33} 33}
34 34