Kaydet (Commit) 7a123cae authored tarafından Caolán McNamara's avatar Caolán McNamara

boost::shared_dynamic_cast -> boost::dynamic_pointer_cast

Change-Id: I2db39313de7df003b59a00a6d6a210f29c3a24ea
üst 96329b45
......@@ -183,7 +183,7 @@ void BaseContainerNode::showState() const
for( std::size_t i=0; i<maChildren.size(); ++i )
{
BaseNodeSharedPtr pNode =
boost::shared_dynamic_cast<BaseNode>(maChildren[i]);
boost::dynamic_pointer_cast<BaseNode>(maChildren[i]);
VERBOSE_TRACE(
"Node connection: n0x%X -> n0x%X",
(const char*)this+debugGetCurrentOffset(),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment