fork(2) download
  1. #include <map>
  2.  
  3. enum FlowType
  4. {
  5. LEVEL_FLOW = 1,
  6. };
  7.  
  8. int main()
  9. {
  10. std::map< int, FlowType > m;
  11. m.insert( std::make_pair( 1, LEVEL_FLOW ) );
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 3424KB
stdin
Standard input is empty
stdout
Standard output is empty