diff options
-rw-r--r-- | src/core/model/Document.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/model/Document.hpp b/src/core/model/Document.hpp index cebf266..4be3494 100644 --- a/src/core/model/Document.hpp +++ b/src/core/model/Document.hpp @@ -727,7 +727,9 @@ public: * @param name is a name for this Document. */ Document(Manager &mgr, std::string name) - : RootNode(mgr, std::move(name), nullptr), annotations(this) + : RootNode(mgr, std::move(name), nullptr), + annotations(this), + domains(this) { } |