summaryrefslogtreecommitdiffstats
path: root/src/Structure.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Structure.cpp')
-rw-r--r--src/Structure.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Structure.cpp b/src/Structure.cpp
index 6fd9b3d..5c7dc9a 100644
--- a/src/Structure.cpp
+++ b/src/Structure.cpp
@@ -24,10 +24,10 @@
24namespace PList 24namespace PList
25{ 25{
26 26
27Structure::Structure() : Node() 27Structure::Structure(Node* parent) : Node(parent)
28{ 28{
29} 29}
30Structure::Structure(plist_type type) : Node(type) 30Structure::Structure(plist_type type, Node* parent) : Node(type, parent)
31{ 31{
32} 32}
33 33