MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / exception

Function exception

extern/boost/boost/exception/exception.hpp:271–278  ·  view source on GitHub ↗

On HP aCC, this protected copy constructor prevents throwing boost::exception. On all other platforms, the same effect is achieved by the pure virtual destructor.

Source from the content-addressed store, hash-verified

269 //On HP aCC, this protected copy constructor prevents throwing boost::exception.
270 //On all other platforms, the same effect is achieved by the pure virtual destructor.
271 exception( exception const & x ) BOOST_NOEXCEPT_OR_NOTHROW:
272 data_(x.data_),
273 throw_function_(x.throw_function_),
274 throw_file_(x.throw_file_),
275 throw_line_(x.throw_line_),
276 throw_column_(x.throw_column_)
277 {
278 }
279#endif
280
281 virtual ~exception() BOOST_NOEXCEPT_OR_NOTHROW

Callers 2

exception.hppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected