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
Spot
Spot
Commits
4d9679c2
Commit
4d9679c2
authored
Oct 21, 2019
by
Etienne Renault
Browse files
ltsmin: prefer '\n' for std::cerr
* tests/ltsmin/modelcheck.cc: Here.
parent
d667e0e6
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/ltsmin/modelcheck.cc
View file @
4d9679c2
...
...
@@ -339,10 +339,9 @@ static int checked_main()
}
catch
(
const
std
::
bad_alloc
&
)
{
std
::
cerr
<<
"Out of memory during emptiness check."
<<
std
::
endl
;
std
::
cerr
<<
"Out of memory during emptiness check.
\n
"
;
if
(
!
mc_options
.
compress
)
std
::
cerr
<<
"Try option -z for state compression.
"
<<
std
::
endl
;
std
::
cerr
<<
"Try option -z for state compression.
\n
"
;
exit_code
=
2
;
exit
(
exit_code
);
}
...
...
@@ -374,8 +373,8 @@ static int checked_main()
}
catch
(
const
std
::
bad_alloc
&
)
{
std
::
cerr
<<
"Out of memory while looking for counterexample."
<<
std
::
endl
;
std
::
cerr
<<
"Out of memory while looking for counterexample.
\n
"
;
exit_code
=
2
;
exit
(
exit_code
);
}
...
...
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