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