We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 943f9fd commit b4e8e2fCopy full SHA for b4e8e2f
examples/local/fibonacci/source/nosv.cpp
@@ -66,7 +66,7 @@ int main(int argc, char **argv)
66
// Adding it to the list
67
auto itr = cr.begin();
68
auto numCores = std::max(8ul, cr.size());
69
- for (int i = 0; i < numCores; i++)
+ for (size_t i = 0; i < numCores; i++)
70
{
71
computeResources.push_back(*itr);
72
itr++;
examples/local/fibonacci/source/pthreads.cpp
@@ -60,7 +60,7 @@ int main(int argc, char **argv)
60
61
62
63
64
65
0 commit comments