lib3_throw.cpp 322 B

1234567891011121314
  1. // Copyright 2018 Peter Dimov
  2. //
  3. // Distributed under the Boost Software License, Version 1.0.
  4. //
  5. // See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt
  7. #include "lib3_throw.hpp"
  8. #include <boost/throw_exception.hpp>
  9. void lib3::f()
  10. {
  11. BOOST_THROW_EXCEPTION( lib3::exception() );
  12. }