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
bob
bob.io.image
Commits
80f453a3
Commit
80f453a3
authored
Sep 14, 2016
by
Manuel Günther
Browse files
Log message needs to write std::endl itself
parent
63a5d33b
Changes
1
Hide whitespace changes
Inline
Side-by-side
bob/io/image/cpp/jpeg.cpp
View file @
80f453a3
...
...
@@ -64,7 +64,7 @@ static void my_output_message(j_common_ptr cinfo){
cinfo
->
err
->
format_message
(
cinfo
,
message
);
// log message as debug
bob
::
core
::
debug
<<
"In image '"
<<
reinterpret_cast
<
char
*>
(
cinfo
->
client_data
)
<<
"' JPEG warning has occured -> "
<<
message
;
bob
::
core
::
debug
<<
"In image '"
<<
reinterpret_cast
<
char
*>
(
cinfo
->
client_data
)
<<
"' JPEG warning has occured -> "
<<
message
<<
std
::
endl
;
}
...
...
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