summaryrefslogtreecommitdiff
path: root/src/core/model
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/model')
-rw-r--r--src/core/model/Domain.hpp2
-rw-r--r--src/core/model/Typesystem.hpp3
2 files changed, 2 insertions, 3 deletions
diff --git a/src/core/model/Domain.hpp b/src/core/model/Domain.hpp
index 565313f..40b48c6 100644
--- a/src/core/model/Domain.hpp
+++ b/src/core/model/Domain.hpp
@@ -27,7 +27,7 @@
#ifndef _OUSIA_MODEL_DOMAIN_HPP_
#define _OUSIA_MODEL_DOMAIN_HPP_
-#include <core/ManagedContainers.hpp>
+#include <core/managed/ManagedContainer.hpp>
#include <core/Node.hpp>
namespace ousia {
diff --git a/src/core/model/Typesystem.hpp b/src/core/model/Typesystem.hpp
index 77a862b..347adb8 100644
--- a/src/core/model/Typesystem.hpp
+++ b/src/core/model/Typesystem.hpp
@@ -30,7 +30,6 @@
#include <map>
#include <vector>
-#include <core/ManagedContainers.hpp>
#include <core/Node.hpp>
#include <core/common/Exceptions.hpp>
#include <core/common/Logger.hpp>
@@ -361,7 +360,7 @@ public:
class Typesystem : public Node {
private:
- ManagedVector<Type> types;
+ NodeVector<Type> types;
public:
Typesystem(Manager &mgr, std::string name, Handle<Node> parent = nullptr)