summaryrefslogtreecommitdiffstats
path: root/src/server/GraphObjectImpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/GraphObjectImpl.cpp')
-rw-r--r--src/server/GraphObjectImpl.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/server/GraphObjectImpl.cpp b/src/server/GraphObjectImpl.cpp
index 0d07b510..0b66d05e 100644
--- a/src/server/GraphObjectImpl.cpp
+++ b/src/server/GraphObjectImpl.cpp
@@ -16,6 +16,8 @@
#include <string>
+#include "raul/log.hpp"
+
#include "GraphObjectImpl.hpp"
#include "PatchImpl.hpp"
#include "ThreadManager.hpp"
@@ -53,7 +55,8 @@ GraphObjectImpl::parent_patch() const
SharedPtr<GraphObject>
GraphObjectImpl::find_child(const std::string& name) const
{
- throw;
+ Raul::error("GraphObjectImpl::find_child called\n");
+ return SharedPtr<GraphObject>();
}
} // namespace Server