2
0
mirror of https://github.com/boostorg/test.git synced 2026-01-23 18:12:12 +00:00
Files
test/example/prg_exec_example.cpp
Gennadiy Rozental 913c19106f *** empty log message ***
[SVN r16565]
2002-12-09 05:22:48 +00:00

10 lines
363 B
C++

// boost Program Execution Monitor program --------------------------------//
int add( int i, int j ) { return i+j; }
int cpp_main( int, char *[] ) // note the name!
{
// two ways to detect and report the same error:
if ( add(2,2) != 4 ) throw "Oops..."; // #1 throws on error
return add(2,2) == 4 ? 0 : 1; // #2 returns error directly
}