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
84674289
Commit
84674289
authored
Aug 13, 2019
by
Martin Heistermann
Browse files
Remove useless default params from property classes
parent
fb8faa9d
Pipeline
#11742
passed with stage
in 6 minutes and 40 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/OpenVolumeMesh/Core/OpenVolumeMeshBaseProperty.hh
View file @
84674289
...
...
@@ -61,8 +61,8 @@ public:
public:
explicit
OpenVolumeMeshBaseProperty
(
const
std
::
string
&
_name
=
"<unknown>"
,
const
std
::
string
&
_internal_type_name
=
"<unknown>"
)
const
std
::
string
&
_name
,
const
std
::
string
&
_internal_type_name
)
:
name_
(
_name
),
internal_type_name_
(
_internal_type_name
),
persistent_
(
false
),
...
...
src/OpenVolumeMesh/Core/OpenVolumeMeshProperty.hh
View file @
84674289
...
...
@@ -73,8 +73,8 @@ public:
public:
explicit
OpenVolumeMeshPropertyT
(
const
std
::
string
&
_name
=
"<unknown>"
,
const
std
::
string
&
_internal_type_name
=
"<unknown>"
,
const
std
::
string
&
_name
,
const
std
::
string
&
_internal_type_name
,
const
T
&
_def
=
T
())
:
OpenVolumeMeshBaseProperty
(
_name
,
_internal_type_name
),
def_
(
_def
)
...
...
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