Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenWalnut
OpenWalnut Core
Commits
c4eb7f07
Commit
c4eb7f07
authored
Sep 06, 2019
by
Stefan Philips
Browse files
[FIX] Remove rule-of-three-violation by removing unnecessary copy constructor
parent
f1a56c7d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
13 deletions
+0
-13
src/core/common/WBoundingBox.h
src/core/common/WBoundingBox.h
+0
-13
No files found.
src/core/common/WBoundingBox.h
View file @
c4eb7f07
...
...
@@ -82,13 +82,6 @@ public:
*/
WBoundingBoxImpl
(
const
vec_type
&
min
,
const
vec_type
&
max
);
/**
* Copy construct using a given bounding box
*
* \param bb the source bb
*/
WBoundingBoxImpl
(
const
WBoundingBoxImpl
&
bb
);
/**
* Create BoundinmgBox using a given sphere.
*
...
...
@@ -220,12 +213,6 @@ inline WBoundingBoxImpl< VT >::WBoundingBoxImpl( const osg::BoundingSphereImpl<
{
}
template
<
class
VT
>
inline
WBoundingBoxImpl
<
VT
>::
WBoundingBoxImpl
(
const
WBoundingBoxImpl
<
VT
>&
bb
)
:
osg
::
BoundingBoxImpl
<
VT
>
(
bb
)
{
}
template
<
class
VT
>
inline
WBoundingBoxImpl
<
VT
>::~
WBoundingBoxImpl
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment