Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenVolumeMesh
OpenVolumeMesh
Commits
c95111bb
Commit
c95111bb
authored
Feb 20, 2019
by
Martin Heistermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete broken Property assignment operator.
parent
37bd6fd8
Pipeline
#8709
passed with stage
in 3 minutes and 37 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
7 deletions
+1
-7
src/OpenVolumeMesh/Core/BaseProperty.cc
src/OpenVolumeMesh/Core/BaseProperty.cc
+0
-6
src/OpenVolumeMesh/Core/BaseProperty.hh
src/OpenVolumeMesh/Core/BaseProperty.hh
+1
-1
No files found.
src/OpenVolumeMesh/Core/BaseProperty.cc
View file @
c95111bb
...
...
@@ -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 @
c95111bb
...
...
@@ -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
()
{}
...
...
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