Skip to content
Snippets Groups Projects

WIP: Resolve "std::set and std::map instead of std::list in wolf nodes"

3 files
+ 7
4
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -176,8 +176,8 @@ inline unsigned int CaptureBase::id() const
@@ -176,8 +176,8 @@ inline unsigned int CaptureBase::id() const
inline FrameBasePtr CaptureBase::getFrame() const
inline FrameBasePtr CaptureBase::getFrame() const
{
{
frame_ptr_.expired();
if(frame_ptr_.expired()) return nullptr;
return frame_ptr_.lock();
else return frame_ptr_.lock();
}
}
inline void CaptureBase::setFrame(const FrameBasePtr _frm_ptr)
inline void CaptureBase::setFrame(const FrameBasePtr _frm_ptr)
Loading