From a4161688621cd20b372694cd68cbd7c30cb9f98c Mon Sep 17 00:00:00 2001 From: Emil Dotchevski Date: Mon, 8 Sep 2008 18:27:24 +0000 Subject: [PATCH] Hopefully a workaround for an overload resolution bug in Sun compilers causing minor problems [SVN r48668] --- include/boost/exception/exception.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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;