diff --git a/include/boost/exception/exception.hpp b/include/boost/exception/exception.hpp index fdae86a..c6a8fbd 100644 --- a/include/boost/exception/exception.hpp +++ b/include/boost/exception/exception.hpp @@ -191,7 +191,7 @@ boost template friend E const & - operator<<( E const & x, throw_function y ) + operator<<( E const & x, throw_function const & y ) { x.throw_function_=y.v_; return x; @@ -200,7 +200,7 @@ boost template friend E const & - operator<<( E const & x, throw_file y ) + operator<<( E const & x, throw_file const & y ) { x.throw_file_=y.v_; return x; @@ -209,7 +209,7 @@ boost template friend E const & - operator<<( E const & x, throw_line y ) + operator<<( E const & x, throw_line const & y ) { x.throw_line_=y.v_; return x;