Skip to content

Commit

Permalink
Fixed an unused variable warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ddemidov committed Sep 4, 2014
1 parent 49b9d94 commit f2abd63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vexcl/logical.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class any_of {
}

for(unsigned d = 0; d < queue.size(); ++d) {
if (size_t psize = prop.part_size(d)) {
if (prop.part_size(d)) {
char r;
result[d].read(queue[d], 0, 1, &r, true);
if (r) return true;
Expand Down

0 comments on commit f2abd63

Please sign in to comment.