• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
8 #include "lib2_throw.hpp"
9 #include <boost/throw_exception.hpp>
10 
f()11 void lib2::f()
12 {
13     boost::throw_exception( lib2::exception() );
14 }
15