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
17ef8f04
"git@developer.sourcefind.cn:OpenDAS/dgl.git" did not exist on "6694f7b9451692f1c91c595c56eb2ce5e218524f"
Commit
17ef8f04
authored
Apr 16, 2014
by
Davis King
Browse files
A minor change to avoid a compiler warning.
parent
5b18f1d3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
dlib/image_transforms/draw.h
dlib/image_transforms/draw.h
+2
-2
No files found.
dlib/image_transforms/draw.h
View file @
17ef8f04
...
@@ -261,9 +261,9 @@ namespace dlib
...
@@ -261,9 +261,9 @@ namespace dlib
assign_pixel
(
background_color
,
0
);
assign_pixel
(
background_color
,
0
);
temp
=
background_color
;
temp
=
background_color
;
unsigned
long
idx
=
0
;
unsigned
long
idx
=
0
;
for
(
long
r
=
0
;
r
<
size_nr
;
++
r
)
for
(
unsigned
long
r
=
0
;
r
<
size_nr
;
++
r
)
{
{
for
(
long
c
=
0
;
c
<
size_nc
;
++
c
)
for
(
unsigned
long
c
=
0
;
c
<
size_nc
;
++
c
)
{
{
if
(
idx
<
images
.
size
())
if
(
idx
<
images
.
size
())
{
{
...
...
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