Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-05-27 04:50:06 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-05-27 04:50:54 +0300
commit6c1cf395f2d1080d717392e14f578c8ba5e8ddbe (patch)
tree4cd5fc60baf3cec2925d1da6ba5f35f76b6c9caa /intern/ghost/GHOST_Rect.h
parenta739dc67ef3c15f914cc9cccd52d6c2a27501000 (diff)
Cleanup: remove unnecessary copy constructor
Caused deprecated-copy warnings as it wasn't used.
Diffstat (limited to 'intern/ghost/GHOST_Rect.h')
-rw-r--r--intern/ghost/GHOST_Rect.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/intern/ghost/GHOST_Rect.h b/intern/ghost/GHOST_Rect.h
index 88053f83fb9..13632a1c03b 100644
--- a/intern/ghost/GHOST_Rect.h
+++ b/intern/ghost/GHOST_Rect.h
@@ -49,14 +49,6 @@ class GHOST_Rect {
}
/**
- * Copy constructor.
- * \param r rectangle to copy
- */
- GHOST_Rect(const GHOST_Rect &r) : m_l(r.m_l), m_t(r.m_t), m_r(r.m_r), m_b(r.m_b)
- {
- }
-
- /**
* Destructor.
*/
virtual ~GHOST_Rect()