From 37f10d500d2af4f0cf88caf834e095aeb2d581cb Mon Sep 17 00:00:00 2001 From: Hartmut Kaiser Date: Sun, 17 Oct 2010 02:24:40 +0000 Subject: [PATCH] Fixing sp_typeinfo for clang and gcc 4.5.1 [SVN r66031] --- include/boost/detail/sp_typeinfo.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/detail/sp_typeinfo.hpp b/include/boost/detail/sp_typeinfo.hpp index 3ee934f..c7bd549 100644 --- a/include/boost/detail/sp_typeinfo.hpp +++ b/include/boost/detail/sp_typeinfo.hpp @@ -74,7 +74,7 @@ template struct sp_typeid_ } }; -template sp_typeinfo sp_typeid_< T >::ti_ = sp_typeid_< T >::name(); +template sp_typeinfo sp_typeid_< T >::ti_(sp_typeid_< T >::name()); template struct sp_typeid_< T & >: sp_typeid_< T > {