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
Albert Gräf
Gem
Commits
1cf61955
Commit
1cf61955
authored
Mar 28, 2019
by
IOhannes m zmölnig
Browse files
test unsigned int for "<1" rather than "<=0"
to keep codacy happy
parent
0ff08fac
Changes
1
Show whitespace changes
Inline
Side-by-side
src/Pixes/pix_video.cpp
View file @
1cf61955
...
@@ -503,7 +503,7 @@ void pix_video :: enumerateMess()
...
@@ -503,7 +503,7 @@ void pix_video :: enumerateMess()
}
}
}
}
}
}
if
(
data
.
size
()
<
=
0
)
{
if
(
data
.
size
()
<
1
)
{
error
(
"no devices found"
);
error
(
"no devices found"
);
}
}
...
...
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