Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
08b70bb2
Commit
08b70bb2
authored
Dec 11, 2018
by
Mark OLESEN
Browse files
STYLE: remove unused variable (vtm writer)
parent
98158f54
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/fileFormats/vtk/file/foamVtmWriter.C
View file @
08b70bb2
...
...
@@ -314,20 +314,13 @@ void Foam::vtk::vtmWriter::dump(Ostream& os) const
Foam
::
vtk
::
vtmWriter
::
vtmWriter
()
:
vtmWriter
(
true
,
false
)
vtmWriter
(
true
)
{}
Foam
::
vtk
::
vtmWriter
::
vtmWriter
(
bool
autoName
)
:
vtmWriter
(
autoName
,
false
)
{}
Foam
::
vtk
::
vtmWriter
::
vtmWriter
(
bool
autoName
,
bool
autoCollapse
)
:
autoName_
(
autoName
),
autoCollapse_
(
autoCollapse
),
hasTime_
(
false
),
entries_
(),
blocks_
(),
...
...
src/fileFormats/vtk/file/foamVtmWriter.H
View file @
08b70bb2
...
...
@@ -176,9 +176,6 @@ class vtmWriter
//- Auto-generate names from 'file' entry?
bool
autoName_
;
//- Collapse empty blocks and combine block/dataset etc.
bool
autoCollapse_
;
//- Has a TimeValue for FieldData?
bool
hasTime_
;
...
...
@@ -214,9 +211,6 @@ public:
//- Construct with specified behaviour for autoName
explicit
vtmWriter
(
bool
autoName
);
//- Construct with specified behaviour for autoName, autoCollapse
vtmWriter
(
bool
autoName
,
bool
autoCollapse
);
//- Destructor
~
vtmWriter
()
=
default
;
...
...
Write
Preview
Supports
Markdown
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