From 194d35dd3f91c37120734ed9e2ff02a2e6ace00d Mon Sep 17 00:00:00 2001 From: Vladimir Petrik <vladimir.petrik@cvut.cz> Date: Wed, 25 May 2022 15:28:52 +0200 Subject: [PATCH] Switch to std pointer and fix wrong include path. --- include/dynamic_graph_bridge/fwd.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/dynamic_graph_bridge/fwd.hh b/include/dynamic_graph_bridge/fwd.hh index 0a98b01..b3f172d 100644 --- a/include/dynamic_graph_bridge/fwd.hh +++ b/include/dynamic_graph_bridge/fwd.hh @@ -9,12 +9,12 @@ #ifndef DYNAMIC_GRAPH_BRIDGE_FWD_HH #define DYNAMIC_GRAPH_BRIDGE_FWD_HH -#include <dynamic-graph/python/fwd.hh> +#include <dynamic-graph/fwd.hh> namespace dynamicgraph { // classes defined in sot-core class Interpreter; - typedef shared_ptr<Interpreter> InterpreterPtr_t; + typedef std::shared_ptr<Interpreter> InterpreterPtr_t; }// namespace dynamicgraph #endif // DYNAMIC_GRAPH_PYTHON_FWD_HH -- GitLab