Skip to content
Snippets Groups Projects
Commit 765ebd7e authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

Remove comments

parent 0f65b415
No related branches found
No related tags found
No related merge requests found
......@@ -35,10 +35,6 @@ ConstraintBase::ConstraintBase(ConstraintType _tp, FrameBasePtr _frame_ptr, bool
feature_other_ptr_(),
landmark_other_ptr_()
{
// add constraint to frame
// FrameBasePtr frm_o = frame_other_ptr_.lock();
// if (frm_o)
// frm_o->addConstrainedBy(shared_from_this()); // FIXME: cannot do shared_from_this in constructor!
std::cout << "constructed +c" << id() << std::endl;
}
......@@ -55,10 +51,6 @@ ConstraintBase::ConstraintBase(ConstraintType _tp, FeatureBasePtr _feature_ptr,
feature_other_ptr_(_feature_ptr),
landmark_other_ptr_()
{
// add constraint to feature
// FeatureBasePtr ftr_o = feature_other_ptr_.lock();
// if (ftr_o)
// ftr_o->addConstrainedBy(shared_from_this()); // FIXME: cannot do shared_from_this in constructor!
std::cout << "constructed +c" << id() << std::endl;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment