fork(1) download
  1. #include <iostream>
  2. #include <map>
  3. using namespace std;
  4.  
  5.  
  6. int main (void)
  7. {
  8. std::map<double, std::map<double, double> > mTest;
  9.  
  10. std::map<double, std::map<double, double>>::iterator it = mTest.begin();
  11.  
  12. return 1;
  13. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp: In function ‘int main()’:
prog.cpp:10:41: error: ‘>>’ should be ‘> >’ within a nested template argument list
 std::map<double, std::map<double, double>>::iterator it = mTest.begin();
                                         ^
stdout
Standard output is empty