brintos

brintos / llvm-project-archived public Read only

0
0
Text · 238 B · 77f6d09 Raw
10 lines · cpp
1#include <iterator>2#include <vector>3 4int main() {5  std::vector<int> v{1, 2, 3};6  auto move_begin = std::make_move_iterator(v.begin());7  auto move_end = std::make_move_iterator(v.end());8  return 0; // Set break point at this line.9}10