fork(3) download
  1.  
  2.  
  3.  
  4. #ifndef USE_TBB
  5.  
  6. template<typename IT, typename F>
  7. using for_each=tbb::parallel_for_each<IT, F>;
  8.  
  9. #elif
  10.  
  11. template<typename IT, typename F>
  12. using for_each=std::parallel_for_each<IT, F>;
  13.  
  14. #endif
  15.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:7: error: expected unqualified-id before ‘using’
stdout
Standard output is empty