31 lines
503 B
C++
31 lines
503 B
C++
/* Check cf5-opt.vim defs.
|
|
VIM: let g:lcppflags="-std=c++11 -O2"
|
|
VIM: let g:cppflags=g:boost.g:tbb.g:tbbmalloc.g:tbbmproxy
|
|
VIM: let g:ldlibpath=g:boostld.g:tbbld
|
|
VIM: let g:cf5output=0
|
|
*/
|
|
#include <iostream>
|
|
#include <exception>
|
|
|
|
|
|
|
|
int main ( void )
|
|
{try{
|
|
|
|
|
|
return 0;
|
|
}
|
|
catch ( const std::exception& e )
|
|
{
|
|
std::cerr << std::endl
|
|
<< "std::exception(\"" << e.what() << "\")." << std::endl;
|
|
return 2;
|
|
}
|
|
catch ( ... )
|
|
{
|
|
std::cerr << std::endl
|
|
<< "unknown exception." << std::endl;
|
|
return 1;
|
|
}}
|
|
|