fork(1) download
  1. #include <stdext/hash_map>
  2.  
  3. int main()
  4. {
  5. stdext::hash_map<int, int> hm;
  6. hm[1] = 2;
  7. return hm[1];
  8. }
  9.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:1:27: fatal error: stdext/hash_map: No such file or directory
 #include <stdext/hash_map>
                           ^
compilation terminated.
stdout
Standard output is empty