mp::filter::FrontendNet nf;
}
}
+ catch (std::runtime_error &e) {
+ std::cerr << "std::runtime error: " << e.what() << std::endl;
+ BOOST_CHECK(false);
+ }
catch ( ... ) {
BOOST_CHECK (false);
}
}
}
}
+ catch (std::runtime_error &e) {
+ std::cerr << "std::runtime error: " << e.what() << std::endl;
+ BOOST_CHECK(false);
+ }
catch ( ... ) {
BOOST_CHECK (false);
}
}
BOOST_CHECK(true);
}
+ catch (std::runtime_error &e) {
+ std::cerr << "std::runtime error: " << e.what() << std::endl;
+ BOOST_CHECK(false);
+ }
catch ( ... ) {
BOOST_CHECK (false);
}