Skip to content

Commit

Permalink
Fix copy constructor warning when initializing CloudView
Browse files Browse the repository at this point in the history
  • Loading branch information
jammm authored and kunaltyagi committed Oct 21, 2019
1 parent 1e3c62e commit 436697c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/cloud_composer/src/cloud_view.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ pcl::cloud_composer::CloudView::CloudView (ProjectModel* model, QWidget* parent)
}

pcl::cloud_composer::CloudView::CloudView (const CloudView& to_copy)
: vis_ (to_copy.vis_)
: QWidget()
, vis_ (to_copy.vis_)
, model_ (to_copy.model_)
, qvtk_ (to_copy.qvtk_)
{
Expand Down

0 comments on commit 436697c

Please sign in to comment.