Advertisement
kernel_memory_dump

Untitled

Jun 7th, 2015
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.29 KB | None | 0 0
  1. class Asd {
  2.     public:
  3.         void operator() (const blocked_range<unsigned int>& range) const {
  4.             for (unsigned int i = range.begin(); i!= range.end(); ++i) {
  5.                 mapa::accessor a;
  6.                 //cout << i << endl;
  7.                 mappedValues.insert(a, clip2CounterVector[i]);
  8.                 a->second += 1;
  9.             }
  10.         }
  11.     };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement