From 09c7cb53c9a6be59f66937df270f370863763949 Mon Sep 17 00:00:00 2001 From: Robert Ramey Date: Wed, 4 Aug 2004 05:15:01 +0000 Subject: [PATCH] fixes comeau bug [SVN r24278] --- include/boost/throw_exception.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/throw_exception.hpp b/include/boost/throw_exception.hpp index 87bbf13..bb79a37 100644 --- a/include/boost/throw_exception.hpp +++ b/include/boost/throw_exception.hpp @@ -34,7 +34,7 @@ void throw_exception(std::exception const & e); // user defined #else -template void throw_exception(E const & e) +template inline void throw_exception(E const & e) { throw e; }