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
mpim-sw
cdo
Commits
421a43e9
Commit
421a43e9
authored
Nov 13, 2017
by
Oliver Heidmann
Browse files
changed fstream opening from constructor to usage of fstream::open(...)
parent
7fb217ca
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/cdoDebugOutput.cc
View file @
421a43e9
...
...
@@ -53,7 +53,7 @@ namespace CdoDebug
CdoStartMessage
()
{
std
::
stringstream
message
;
outfile_stream
=
std
::
fstream
(
outfile
,
std
::
fstream
::
in
|
std
::
fstream
::
app
);
outfile_stream
.
open
(
outfile
,
std
::
fstream
::
in
|
std
::
fstream
::
app
);
message
<<
std
::
string
(
30
,
' '
)
<<
" == CDO Start =="
<<
std
::
endl
;
printMessage
(
message
);
...
...
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