Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
395b1524
Commit
395b1524
authored
Jun 20, 2011
by
Davis King
Browse files
Minor change to suppress a compiler warning.
parent
ec562be0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
dlib/bridge/bridge.h
dlib/bridge/bridge.h
+1
-1
No files found.
dlib/bridge/bridge.h
View file @
395b1524
...
...
@@ -386,7 +386,7 @@ namespace dlib
// Since we don't have a receive pipe to put messages into we will
// just read the bytes from the connection and ignore them.
char
buf
[
1000
];
while
(
con
->
read
(
buf
,
sizeof
(
buf
))
>
0
);
while
(
con
->
read
(
buf
,
sizeof
(
buf
))
>
0
)
;
}
}
catch
(
std
::
bad_alloc
&
)
...
...
Write
Preview
Markdown
is supported
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