fixes comeau bug

[SVN r24278]
This commit is contained in:
Robert Ramey
2004-08-04 05:15:01 +00:00
parent 98c7eb7d68
commit ae714358ad

View File

@ -34,7 +34,7 @@ void throw_exception(std::exception const & e); // user defined
#else
template<class E> void throw_exception(E const & e)
template<class E> inline void throw_exception(E const & e)
{
throw e;
}