From 96419c7e99b7817cd1d454dffe2e2925c2ffea42 Mon Sep 17 00:00:00 2001 From: Joan Sola <jsola@iri.upc.edu> Date: Tue, 6 Mar 2018 15:42:43 +0100 Subject: [PATCH] Remove debug info --- src/frame_base.cpp | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/frame_base.cpp b/src/frame_base.cpp index 6e36fcc40..3318d0170 100644 --- a/src/frame_base.cpp +++ b/src/frame_base.cpp @@ -24,14 +24,14 @@ FrameBase::FrameBase(const TimeStamp& _ts, StateBlockPtr _p_ptr, StateBlockPtr _ state_block_vec_[1] = _o_ptr; state_block_vec_[2] = _v_ptr; - if ( isKey() ) - { - WOLF_DEBUG("New KF", this->id() ); - } - else - { - WOLF_DEBUG("New F", this->id() ); - } +// if ( isKey() ) +// { +// WOLF_DEBUG("New KF", this->id() ); +// } +// else +// { +// WOLF_DEBUG("New F", this->id() ); +// } } FrameBase::FrameBase(const FrameType & _tp, const TimeStamp& _ts, StateBlockPtr _p_ptr, StateBlockPtr _o_ptr, StateBlockPtr _v_ptr) : @@ -47,14 +47,14 @@ FrameBase::FrameBase(const FrameType & _tp, const TimeStamp& _ts, StateBlockPtr state_block_vec_[1] = _o_ptr; state_block_vec_[2] = _v_ptr; - if ( isKey() ) - { - WOLF_DEBUG("New KF", this->id() ); - } - else - { - WOLF_DEBUG("New F", this->id() ); - } +// if ( isKey() ) +// { +// WOLF_DEBUG("New KF", this->id() ); +// } +// else +// { +// WOLF_DEBUG("New F", this->id() ); +// } } FrameBase::~FrameBase() -- GitLab