From e33379d1615ce59a4b1f355ef60bea7e75bd4181 Mon Sep 17 00:00:00 2001 From: "Addisu Z. Taddese" Date: Tue, 26 Jan 2021 12:48:39 -0600 Subject: [PATCH] Remove unnecessary copy constructor declaration from Box (#187) Signed-off-by: Addisu Z. Taddese --- include/ignition/math/Box.hh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/ignition/math/Box.hh b/include/ignition/math/Box.hh index 8074303c3..57670f4f7 100644 --- a/include/ignition/math/Box.hh +++ b/include/ignition/math/Box.hh @@ -82,10 +82,6 @@ namespace ignition public: Box(const Vector3 &_size, const ignition::math::Material &_mat); - /// \brief Copy Constructor. - /// \param[in] _b Box to copy. - public: Box(const Box &_b); - /// \brief Destructor. public: virtual ~Box() = default;