fork download
  1. #include <iostream>
  2. #include <vector>
  3.  
  4. namespace mp{
  5.  
  6. class node{};
  7.  
  8. }
  9.  
  10. void foo(std::vector<mp::node>& vec, mp::node node){
  11. std::vector<mp::node>::iterator itr = vec.begin();
  12. }
  13.  
  14. int main() {
  15. // your code goes here
  16. return 0;
  17. }
Success #stdin #stdout 0s 4516KB
stdin
Standard input is empty
stdout
Standard output is empty