Re: [boost] EH in the regression tools

2003-03-09 Thread David Abrahams
Beman Dawes <[EMAIL PROTECTED]> writes: > At 10:50 AM 3/9/2003, David Abrahams wrote: > > > >Just browsing, I noticed: > > > > if ( !file ) > >throw fs::filesystem_error( "process_jam_long.cpp", > > pth, "can't open output file" ); > > > >But I can't find a catch bloc

Re: [boost] EH in the regression tools

2003-03-09 Thread David Abrahams
Beman Dawes <[EMAIL PROTECTED]> writes: > Yes: > > int cpp_main( int argc, char ** argv ) > > > So execution_monitor will take care of the catch. Ah, thanks very much. -- Dave Abrahams Boost Consulting www.boost-consulting.com ___ Unsub

Re: [boost] EH in the regression tools

2003-03-09 Thread Beman Dawes
At 10:50 AM 3/9/2003, David Abrahams wrote: > >Just browsing, I noticed: > > if ( !file ) >throw fs::filesystem_error( "process_jam_long.cpp", > pth, "can't open output file" ); > >But I can't find a catch block anywhere in the program. Am I missing >something? Yes: int cpp_

[boost] EH in the regression tools

2003-03-09 Thread David Abrahams
Just browsing, I noticed: if ( !file ) throw fs::filesystem_error( "process_jam_long.cpp", pth, "can't open output file" ); But I can't find a catch block anywhere in the program. Am I missing something? -- Dave Abrahams Boost Consulting www.boost-consulting.com _