Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenVolumeMesh
OpenVolumeMesh
Commits
56777c36
Commit
56777c36
authored
Feb 20, 2019
by
Jan Möbius
Browse files
Merge branch 'delete-broken-operator' into 'master'
Delete broken operators See merge request
!49
parents
4cea26e1
5a51963f
Pipeline
#8715
passed with stage
in 9 minutes and 42 seconds
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
src/OpenVolumeMesh/Core/BaseProperty.cc
View file @
56777c36
...
...
@@ -46,10 +46,4 @@
namespace
OpenVolumeMesh
{
BaseProperty
&
BaseProperty
::
operator
=
(
const
BaseProperty
&
_cpy
)
{
resMan_
=
_cpy
.
resMan_
;
lock_
=
_cpy
.
lock_
;
return
*
this
;
}
}
// Namespace OpenVolumeMesh
src/OpenVolumeMesh/Core/BaseProperty.hh
View file @
56777c36
...
...
@@ -59,7 +59,7 @@ public:
BaseProperty
(
const
BaseProperty
&
_cpy
)
:
resMan_
(
_cpy
.
resMan_
),
lock_
(
_cpy
.
lock_
)
{}
BaseProperty
&
operator
=
(
const
BaseProperty
&
_cpy
);
BaseProperty
&
operator
=
(
const
BaseProperty
&
_cpy
)
=
delete
;
virtual
~
BaseProperty
()
{}
...
...
src/OpenVolumeMesh/Core/ResourceManager.hh
View file @
56777c36
...
...
@@ -77,6 +77,8 @@ class ResourceManager {
public:
ResourceManager
();
ResourceManager
(
const
ResourceManager
&
other
);
ResourceManager
&
operator
=
(
const
ResourceManager
&
other
)
=
delete
;
virtual
~
ResourceManager
();
template
<
class
PropT
,
class
HandleT
>
friend
class
PropertyPtr
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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