diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2014-12-28 00:52:32 +0100 |
---|---|---|
committer | Andreas Stöckel <andreas@somweyr.de> | 2014-12-28 00:52:32 +0100 |
commit | 079b45a6745dc296a60622d5a4897ccdfcf1fa0f (patch) | |
tree | 5d21f90c271ef6df828c4cdc81d00365dbc6b4cb /src/core/model/Document.cpp | |
parent | 617e0385fc0c917a40df5169968dd24bd5cc2976 (diff) |
autoformat
Diffstat (limited to 'src/core/model/Document.cpp')
-rw-r--r-- | src/core/model/Document.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/model/Document.cpp b/src/core/model/Document.cpp index fce9d23..854e717 100644 --- a/src/core/model/Document.cpp +++ b/src/core/model/Document.cpp @@ -155,7 +155,7 @@ Rooted<StructuredEntity> StructuredEntity::buildEntity( return {nullptr}; } // append the new entity to the right field. - NodeVector<StructuredEntity> field{parent}; + NodeVector<StructuredEntity> field(parent); parent->getField(field, fieldName); field.push_back(entity); @@ -179,7 +179,7 @@ Rooted<DocumentPrimitive> DocumentPrimitive::buildEntity( return {nullptr}; } // append the new entity to the right field. - NodeVector<StructuredEntity> field{parent}; + NodeVector<StructuredEntity> field(parent); parent->getField(field, fieldName); field.push_back(entity); |