Ticket #4871: adapt_adt_attributes.patch
File adapt_adt_attributes.patch, 1.1 KB (added by , 12 years ago) |
---|
-
adapt_adt_attributes.hpp
30 30 template <typename T, int N, bool Const> 31 31 struct container_value<fusion::extension::adt_attribute_proxy<T, N, Const> > 32 32 : container_value< 33 typename fusion::extension::a ccess::adt_attribute_proxy<33 typename fusion::extension::adt_attribute_proxy< 34 34 T, N, Const 35 35 >::type 36 36 > … … 63 63 {}; 64 64 65 65 /////////////////////////////////////////////////////////////////////////// 66 template <typename T, int N, bool Const,typename Val>66 template <typename T, int N, typename Val> 67 67 struct assign_to_attribute_from_value< 68 68 fusion::extension::adt_attribute_proxy<T, N, false> 69 69 , Val> … … 107 107 val = attr; 108 108 } 109 109 static void 110 fail(fusion::extension::a ccess::adt_attribute_proxy<T, N, false>&)110 fail(fusion::extension::adt_attribute_proxy<T, N, false>&) 111 111 { 112 112 } 113 113 };