error_info_lv_const_test.cpp 393 B

12345678910111213
  1. //Copyright (c) 2006-2015 Emil Dotchevski and Reverge Studios, Inc.
  2. //Distributed under the Boost Software License, Version 1.0. (See accompanying
  3. //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. #include <boost/exception/info.hpp>
  5. template <class E,class I>
  6. E const &
  7. add_info( E const & e, I const & i )
  8. {
  9. return e << i;
  10. }
  11. #include "error_info_test.hpp"